| author | wenzelm | 
| Thu, 13 Oct 2016 11:43:40 +0200 | |
| changeset 64185 | f4d5eb78b8a5 | 
| parent 63167 | 0909deb8059b | 
| child 66453 | cc19f7ca2ed6 | 
| permissions | -rw-r--r-- | 
| 
36098
 
53992c639da5
added imperative SAT checker; improved headers of example files; adopted IsaMakefile
 
bulwahn 
parents: 
35423 
diff
changeset
 | 
1  | 
(* Title: HOL/Imperative_HOL/ex/Linked_Lists.thy  | 
| 
 
53992c639da5
added imperative SAT checker; improved headers of example files; adopted IsaMakefile
 
bulwahn 
parents: 
35423 
diff
changeset
 | 
2  | 
Author: Lukas Bulwahn, TU Muenchen  | 
| 
 
53992c639da5
added imperative SAT checker; improved headers of example files; adopted IsaMakefile
 
bulwahn 
parents: 
35423 
diff
changeset
 | 
3  | 
*)  | 
| 
 
53992c639da5
added imperative SAT checker; improved headers of example files; adopted IsaMakefile
 
bulwahn 
parents: 
35423 
diff
changeset
 | 
4  | 
|
| 63167 | 5  | 
section \<open>Linked Lists by ML references\<close>  | 
| 
36098
 
53992c639da5
added imperative SAT checker; improved headers of example files; adopted IsaMakefile
 
bulwahn 
parents: 
35423 
diff
changeset
 | 
6  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
7  | 
theory Linked_Lists  | 
| 
51143
 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 
haftmann 
parents: 
50630 
diff
changeset
 | 
8  | 
imports "../Imperative_HOL" "~~/src/HOL/Library/Code_Target_Int"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
9  | 
begin  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
10  | 
|
| 63167 | 11  | 
section \<open>Definition of Linked Lists\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
12  | 
|
| 63167 | 13  | 
setup \<open>Sign.add_const_constraint (@{const_name Ref}, SOME @{typ "nat \<Rightarrow> 'a::type ref"})\<close>
 | 
| 58333 | 14  | 
datatype 'a node = Empty | Node 'a "'a node ref"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
15  | 
|
| 37725 | 16  | 
primrec  | 
| 61076 | 17  | 
node_encode :: "'a::countable node \<Rightarrow> nat"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
18  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
19  | 
"node_encode Empty = 0"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
20  | 
| "node_encode (Node x r) = Suc (to_nat (x, r))"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
21  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
22  | 
instance node :: (countable) countable  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
23  | 
proof (rule countable_classI [of "node_encode"])  | 
| 61076 | 24  | 
fix x y :: "'a::countable node"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
25  | 
show "node_encode x = node_encode y \<Longrightarrow> x = y"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
26  | 
by (induct x, auto, induct y, auto, induct y, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
27  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
28  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
29  | 
instance node :: (heap) heap ..  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
30  | 
|
| 61076 | 31  | 
primrec make_llist :: "'a::heap list \<Rightarrow> 'a node Heap"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
32  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
33  | 
[simp del]: "make_llist [] = return Empty"  | 
| 37792 | 34  | 
            | "make_llist (x#xs) = do { tl \<leftarrow> make_llist xs;
 | 
35  | 
next \<leftarrow> ref tl;  | 
|
36  | 
return (Node x next)  | 
|
37  | 
}"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
38  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
39  | 
|
| 61076 | 40  | 
partial_function (heap) traverse :: "'a::heap node \<Rightarrow> 'a list Heap"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
41  | 
where  | 
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
42  | 
[code del]: "traverse l =  | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
43  | 
(case l of Empty \<Rightarrow> return []  | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
44  | 
     | Node x r \<Rightarrow> do { tl \<leftarrow> Ref.lookup r;
 | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
45  | 
xs \<leftarrow> traverse tl;  | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
46  | 
return (x#xs)  | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
47  | 
})"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
48  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
49  | 
lemma traverse_simps[code, simp]:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
50  | 
"traverse Empty = return []"  | 
| 37792 | 51  | 
  "traverse (Node x r) = do { tl \<leftarrow> Ref.lookup r;
 | 
52  | 
xs \<leftarrow> traverse tl;  | 
|
53  | 
return (x#xs)  | 
|
54  | 
}"  | 
|
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
55  | 
by (simp_all add: traverse.simps[of "Empty"] traverse.simps[of "Node x r"])  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
56  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
57  | 
|
| 63167 | 58  | 
section \<open>Proving correctness with relational abstraction\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
59  | 
|
| 63167 | 60  | 
subsection \<open>Definition of list_of, list_of', refs_of and refs_of'\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
61  | 
|
| 37725 | 62  | 
primrec list_of :: "heap \<Rightarrow> ('a::heap) node \<Rightarrow> 'a list \<Rightarrow> bool"
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
63  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
64  | 
"list_of h r [] = (r = Empty)"  | 
| 37725 | 65  | 
| "list_of h r (a#as) = (case r of Empty \<Rightarrow> False | Node b bs \<Rightarrow> (a = b \<and> list_of h (Ref.get h bs) as))"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
66  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
67  | 
definition list_of' :: "heap \<Rightarrow> ('a::heap) node ref \<Rightarrow> 'a list \<Rightarrow> bool"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
68  | 
where  | 
| 37725 | 69  | 
"list_of' h r xs = list_of h (Ref.get h r) xs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
70  | 
|
| 37725 | 71  | 
primrec refs_of :: "heap \<Rightarrow> ('a::heap) node \<Rightarrow> 'a node ref list \<Rightarrow> bool"
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
72  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
73  | 
"refs_of h r [] = (r = Empty)"  | 
| 37725 | 74  | 
| "refs_of h r (x#xs) = (case r of Empty \<Rightarrow> False | Node b bs \<Rightarrow> (x = bs) \<and> refs_of h (Ref.get h bs) xs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
75  | 
|
| 37725 | 76  | 
primrec refs_of' :: "heap \<Rightarrow> ('a::heap) node ref \<Rightarrow> 'a node ref list \<Rightarrow> bool"
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
77  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
78  | 
"refs_of' h r [] = False"  | 
| 37725 | 79  | 
| "refs_of' h r (x#xs) = ((x = r) \<and> refs_of h (Ref.get h x) xs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
80  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
81  | 
|
| 63167 | 82  | 
subsection \<open>Properties of these definitions\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
83  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
84  | 
lemma list_of_Empty[simp]: "list_of h Empty xs = (xs = [])"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
85  | 
by (cases xs, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
86  | 
|
| 37725 | 87  | 
lemma list_of_Node[simp]: "list_of h (Node x ps) xs = (\<exists>xs'. (xs = x # xs') \<and> list_of h (Ref.get h ps) xs')"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
88  | 
by (cases xs, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
89  | 
|
| 37725 | 90  | 
lemma list_of'_Empty[simp]: "Ref.get h q = Empty \<Longrightarrow> list_of' h q xs = (xs = [])"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
91  | 
unfolding list_of'_def by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
92  | 
|
| 37725 | 93  | 
lemma list_of'_Node[simp]: "Ref.get h q = Node x ps \<Longrightarrow> list_of' h q xs = (\<exists>xs'. (xs = x # xs') \<and> list_of' h ps xs')"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
94  | 
unfolding list_of'_def by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
95  | 
|
| 37725 | 96  | 
lemma list_of'_Nil: "list_of' h q [] \<Longrightarrow> Ref.get h q = Empty"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
97  | 
unfolding list_of'_def by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
98  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
99  | 
lemma list_of'_Cons:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
100  | 
assumes "list_of' h q (x#xs)"  | 
| 37725 | 101  | 
obtains n where "Ref.get h q = Node x n" and "list_of' h n xs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
102  | 
using assms unfolding list_of'_def by (auto split: node.split_asm)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
103  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
104  | 
lemma refs_of_Empty[simp] : "refs_of h Empty xs = (xs = [])"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
105  | 
by (cases xs, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
106  | 
|
| 37725 | 107  | 
lemma refs_of_Node[simp]: "refs_of h (Node x ps) xs = (\<exists>prs. xs = ps # prs \<and> refs_of h (Ref.get h ps) prs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
108  | 
by (cases xs, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
109  | 
|
| 37725 | 110  | 
lemma refs_of'_def': "refs_of' h p ps = (\<exists>prs. (ps = (p # prs)) \<and> refs_of h (Ref.get h p) prs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
111  | 
by (cases ps, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
112  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
113  | 
lemma refs_of'_Node:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
114  | 
assumes "refs_of' h p xs"  | 
| 37725 | 115  | 
assumes "Ref.get h p = Node x pn"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
116  | 
obtains pnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
117  | 
where "xs = p # pnrs" and "refs_of' h pn pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
118  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
119  | 
unfolding refs_of'_def' by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
120  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
121  | 
lemma list_of_is_fun: "\<lbrakk> list_of h n xs; list_of h n ys\<rbrakk> \<Longrightarrow> xs = ys"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
122  | 
proof (induct xs arbitrary: ys n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
123  | 
case Nil thus ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
124  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
125  | 
case (Cons x xs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
126  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
127  | 
by (cases ys, auto split: node.split_asm)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
128  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
129  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
130  | 
lemma refs_of_is_fun: "\<lbrakk> refs_of h n xs; refs_of h n ys\<rbrakk> \<Longrightarrow> xs = ys"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
131  | 
proof (induct xs arbitrary: ys n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
132  | 
case Nil thus ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
133  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
134  | 
case (Cons x xs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
135  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
136  | 
by (cases ys, auto split: node.split_asm)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
137  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
138  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
139  | 
lemma refs_of'_is_fun: "\<lbrakk> refs_of' h p as; refs_of' h p bs \<rbrakk> \<Longrightarrow> as = bs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
140  | 
unfolding refs_of'_def' by (auto dest: refs_of_is_fun)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
141  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
142  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
143  | 
lemma list_of_refs_of_HOL:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
144  | 
assumes "list_of h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
145  | 
shows "\<exists>rs. refs_of h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
146  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
147  | 
proof (induct xs arbitrary: r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
148  | 
case Nil thus ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
149  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
150  | 
case (Cons x xs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
151  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
152  | 
by (cases r, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
153  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
154  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
155  | 
lemma list_of_refs_of:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
156  | 
assumes "list_of h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
157  | 
obtains rs where "refs_of h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
158  | 
using list_of_refs_of_HOL[OF assms]  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
159  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
160  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
161  | 
lemma list_of'_refs_of'_HOL:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
162  | 
assumes "list_of' h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
163  | 
shows "\<exists>rs. refs_of' h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
164  | 
proof -  | 
| 37725 | 165  | 
from assms obtain rs' where "refs_of h (Ref.get h r) rs'"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
166  | 
unfolding list_of'_def by (rule list_of_refs_of)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
167  | 
thus ?thesis unfolding refs_of'_def' by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
168  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
169  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
170  | 
lemma list_of'_refs_of':  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
171  | 
assumes "list_of' h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
172  | 
obtains rs where "refs_of' h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
173  | 
using list_of'_refs_of'_HOL[OF assms]  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
174  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
175  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
176  | 
lemma refs_of_list_of_HOL:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
177  | 
assumes "refs_of h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
178  | 
shows "\<exists>xs. list_of h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
179  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
180  | 
proof (induct rs arbitrary: r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
181  | 
case Nil thus ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
182  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
183  | 
case (Cons r rs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
184  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
185  | 
by (cases r, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
186  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
187  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
188  | 
lemma refs_of_list_of:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
189  | 
assumes "refs_of h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
190  | 
obtains xs where "list_of h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
191  | 
using refs_of_list_of_HOL[OF assms]  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
192  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
193  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
194  | 
lemma refs_of'_list_of'_HOL:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
195  | 
assumes "refs_of' h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
196  | 
shows "\<exists>xs. list_of' h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
197  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
198  | 
unfolding list_of'_def refs_of'_def'  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
199  | 
by (auto intro: refs_of_list_of)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
200  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
201  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
202  | 
lemma refs_of'_list_of':  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
203  | 
assumes "refs_of' h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
204  | 
obtains xs where "list_of' h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
205  | 
using refs_of'_list_of'_HOL[OF assms]  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
206  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
207  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
208  | 
lemma refs_of'E: "refs_of' h q rs \<Longrightarrow> q \<in> set rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
209  | 
unfolding refs_of'_def' by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
210  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
211  | 
lemma list_of'_refs_of'2:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
212  | 
assumes "list_of' h r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
213  | 
shows "\<exists>rs'. refs_of' h r (r#rs')"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
214  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
215  | 
from assms obtain rs where "refs_of' h r rs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
216  | 
thus ?thesis by (auto simp add: refs_of'_def')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
217  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
218  | 
|
| 63167 | 219  | 
subsection \<open>More complicated properties of these predicates\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
220  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
221  | 
lemma list_of_append:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
222  | 
"list_of h n (as @ bs) \<Longrightarrow> \<exists>m. list_of h m bs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
223  | 
apply (induct as arbitrary: n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
224  | 
apply auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
225  | 
apply (case_tac n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
226  | 
apply auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
227  | 
done  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
228  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
229  | 
lemma refs_of_append: "refs_of h n (as @ bs) \<Longrightarrow> \<exists>m. refs_of h m bs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
230  | 
apply (induct as arbitrary: n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
231  | 
apply auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
232  | 
apply (case_tac n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
233  | 
apply auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
234  | 
done  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
235  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
236  | 
lemma refs_of_next:  | 
| 37725 | 237  | 
assumes "refs_of h (Ref.get h p) rs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
238  | 
shows "p \<notin> set rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
239  | 
proof (rule ccontr)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
240  | 
assume a: "\<not> (p \<notin> set rs)"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
241  | 
from this obtain as bs where split:"rs = as @ p # bs" by (fastforce dest: split_list)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
242  | 
with assms obtain q where "refs_of h q (p # bs)" by (fast dest: refs_of_append)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
243  | 
with assms split show "False"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
244  | 
by (cases q,auto dest: refs_of_is_fun)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
245  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
246  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
247  | 
lemma refs_of_distinct: "refs_of h p rs \<Longrightarrow> distinct rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
248  | 
proof (induct rs arbitrary: p)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
249  | 
case Nil thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
250  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
251  | 
case (Cons r rs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
252  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
253  | 
by (cases p, auto simp add: refs_of_next)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
254  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
255  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
256  | 
lemma refs_of'_distinct: "refs_of' h p rs \<Longrightarrow> distinct rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
257  | 
unfolding refs_of'_def'  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
258  | 
by (fastforce simp add: refs_of_distinct refs_of_next)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
259  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
260  | 
|
| 63167 | 261  | 
subsection \<open>Interaction of these predicates with our heap transitions\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
262  | 
|
| 37725 | 263  | 
lemma list_of_set_ref: "refs_of h q rs \<Longrightarrow> p \<notin> set rs \<Longrightarrow> list_of (Ref.set p v h) q as = list_of h q as"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
264  | 
proof (induct as arbitrary: q rs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
265  | 
case Nil thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
266  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
267  | 
case (Cons x xs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
268  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
269  | 
proof (cases q)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
270  | 
case Empty thus ?thesis by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
271  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
272  | 
case (Node a ref)  | 
| 37725 | 273  | 
from Cons(2) Node obtain rs' where 1: "refs_of h (Ref.get h ref) rs'" and rs_rs': "rs = ref # rs'" by auto  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
274  | 
from Cons(3) rs_rs' have "ref \<noteq> p" by fastforce  | 
| 37725 | 275  | 
hence ref_eq: "Ref.get (Ref.set p v h) ref = (Ref.get h ref)" by (auto simp add: Ref.get_set_neq)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
276  | 
from rs_rs' Cons(3) have 2: "p \<notin> set rs'" by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
277  | 
from Cons.hyps[OF 1 2] Node ref_eq show ?thesis by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
278  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
279  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
280  | 
|
| 37725 | 281  | 
lemma refs_of_set_ref: "refs_of h q rs \<Longrightarrow> p \<notin> set rs \<Longrightarrow> refs_of (Ref.set p v h) q as = refs_of h q as"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
282  | 
proof (induct as arbitrary: q rs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
283  | 
case Nil thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
284  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
285  | 
case (Cons x xs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
286  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
287  | 
proof (cases q)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
288  | 
case Empty thus ?thesis by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
289  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
290  | 
case (Node a ref)  | 
| 37725 | 291  | 
from Cons(2) Node obtain rs' where 1: "refs_of h (Ref.get h ref) rs'" and rs_rs': "rs = ref # rs'" by auto  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
292  | 
from Cons(3) rs_rs' have "ref \<noteq> p" by fastforce  | 
| 37725 | 293  | 
hence ref_eq: "Ref.get (Ref.set p v h) ref = (Ref.get h ref)" by (auto simp add: Ref.get_set_neq)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
294  | 
from rs_rs' Cons(3) have 2: "p \<notin> set rs'" by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
295  | 
from Cons.hyps[OF 1 2] Node ref_eq show ?thesis by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
296  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
297  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
298  | 
|
| 37725 | 299  | 
lemma refs_of_set_ref2: "refs_of (Ref.set p v h) q rs \<Longrightarrow> p \<notin> set rs \<Longrightarrow> refs_of (Ref.set p v h) q rs = refs_of h q rs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
300  | 
proof (induct rs arbitrary: q)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
301  | 
case Nil thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
302  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
303  | 
case (Cons x xs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
304  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
305  | 
proof (cases q)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
306  | 
case Empty thus ?thesis by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
307  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
308  | 
case (Node a ref)  | 
| 37725 | 309  | 
from Cons(2) Node have 1:"refs_of (Ref.set p v h) (Ref.get (Ref.set p v h) ref) xs" and x_ref: "x = ref" by auto  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
310  | 
from Cons(3) this have "ref \<noteq> p" by fastforce  | 
| 37725 | 311  | 
hence ref_eq: "Ref.get (Ref.set p v h) ref = (Ref.get h ref)" by (auto simp add: Ref.get_set_neq)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
312  | 
from Cons(3) have 2: "p \<notin> set xs" by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
313  | 
with Cons.hyps 1 2 Node ref_eq show ?thesis  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
314  | 
by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
315  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
316  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
317  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
318  | 
lemma list_of'_set_ref:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
319  | 
assumes "refs_of' h q rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
320  | 
assumes "p \<notin> set rs"  | 
| 37725 | 321  | 
shows "list_of' (Ref.set p v h) q as = list_of' h q as"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
322  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
323  | 
from assms have "q \<noteq> p" by (auto simp only: dest!: refs_of'E)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
324  | 
with assms show ?thesis  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
325  | 
unfolding list_of'_def refs_of'_def'  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
326  | 
by (auto simp add: list_of_set_ref)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
327  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
328  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
329  | 
lemma list_of'_set_next_ref_Node[simp]:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
330  | 
assumes "list_of' h r xs"  | 
| 37725 | 331  | 
assumes "Ref.get h p = Node x r'"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
332  | 
assumes "refs_of' h r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
333  | 
assumes "p \<notin> set rs"  | 
| 37725 | 334  | 
shows "list_of' (Ref.set p (Node x r) h) p (x#xs) = list_of' h r xs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
335  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
336  | 
unfolding list_of'_def refs_of'_def'  | 
| 37725 | 337  | 
by (auto simp add: list_of_set_ref Ref.noteq_sym)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
338  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
339  | 
lemma refs_of'_set_ref:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
340  | 
assumes "refs_of' h q rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
341  | 
assumes "p \<notin> set rs"  | 
| 37725 | 342  | 
shows "refs_of' (Ref.set p v h) q as = refs_of' h q as"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
343  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
344  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
345  | 
from assms have "q \<noteq> p" by (auto simp only: dest!: refs_of'E)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
346  | 
with assms show ?thesis  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
347  | 
unfolding refs_of'_def'  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
348  | 
by (auto simp add: refs_of_set_ref)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
349  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
350  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
351  | 
lemma refs_of'_set_ref2:  | 
| 37725 | 352  | 
assumes "refs_of' (Ref.set p v h) q rs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
353  | 
assumes "p \<notin> set rs"  | 
| 37725 | 354  | 
shows "refs_of' (Ref.set p v h) q as = refs_of' h q as"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
355  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
356  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
357  | 
from assms have "q \<noteq> p" by (auto simp only: dest!: refs_of'E)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
358  | 
with assms show ?thesis  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
359  | 
unfolding refs_of'_def'  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
360  | 
apply auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
361  | 
apply (subgoal_tac "prs = prsa")  | 
| 37725 | 362  | 
apply (insert refs_of_set_ref2[of p v h "Ref.get h q"])  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
363  | 
apply (erule_tac x="prs" in meta_allE)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
364  | 
apply auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
365  | 
apply (auto dest: refs_of_is_fun)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
366  | 
done  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
367  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
368  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
369  | 
lemma refs_of'_set_next_ref:  | 
| 37725 | 370  | 
assumes "Ref.get h1 p = Node x pn"  | 
371  | 
assumes "refs_of' (Ref.set p (Node x r1) h1) p rs"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
372  | 
obtains r1s where "rs = (p#r1s)" and "refs_of' h1 r1 r1s"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
373  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
374  | 
from assms refs_of'_distinct[OF assms(2)] have "\<exists> r1s. rs = (p # r1s) \<and> refs_of' h1 r1 r1s"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
375  | 
apply -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
376  | 
unfolding refs_of'_def'[of _ p]  | 
| 37725 | 377  | 
apply (auto, frule refs_of_set_ref2) by (auto dest: Ref.noteq_sym)  | 
| 41549 | 378  | 
with assms that show thesis by auto  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
379  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
380  | 
|
| 63167 | 381  | 
section \<open>Proving make_llist and traverse correct\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
382  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
383  | 
lemma refs_of_invariant:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
384  | 
  assumes "refs_of h (r::('a::heap) node) xs"
 | 
| 37725 | 385  | 
assumes "\<forall>refs. refs_of h r refs \<longrightarrow> (\<forall>ref \<in> set refs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
386  | 
shows "refs_of h' r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
387  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
388  | 
proof (induct xs arbitrary: r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
389  | 
case Nil thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
390  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
391  | 
case (Cons x xs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
392  | 
from Cons(2) obtain v where Node: "r = Node v x" by (cases r, auto)  | 
| 37725 | 393  | 
from Cons(2) Node have refs_of_next: "refs_of h (Ref.get h x) xs'" by simp  | 
394  | 
from Cons(2-3) Node have ref_eq: "Ref.get h x = Ref.get h' x" by auto  | 
|
395  | 
from ref_eq refs_of_next have 1: "refs_of h (Ref.get h' x) xs'" by simp  | 
|
396  | 
from Cons(2) Cons(3) have "\<forall>ref \<in> set xs'. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref"  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
397  | 
by fastforce  | 
| 37725 | 398  | 
with Cons(3) 1 have 2: "\<forall>refs. refs_of h (Ref.get h' x) refs \<longrightarrow> (\<forall>ref \<in> set refs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref)"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
399  | 
by (fastforce dest: refs_of_is_fun)  | 
| 37725 | 400  | 
from Cons.hyps[OF 1 2] have "refs_of h' (Ref.get h' x) xs'" .  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
401  | 
with Node show ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
402  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
403  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
404  | 
lemma refs_of'_invariant:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
405  | 
assumes "refs_of' h r xs"  | 
| 37725 | 406  | 
assumes "\<forall>refs. refs_of' h r refs \<longrightarrow> (\<forall>ref \<in> set refs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
407  | 
shows "refs_of' h' r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
408  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
409  | 
proof -  | 
| 37725 | 410  | 
from assms obtain prs where refs:"refs_of h (Ref.get h r) prs" and xs_def: "xs = r # prs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
411  | 
unfolding refs_of'_def' by auto  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
412  | 
from xs_def assms have x_eq: "Ref.get h r = Ref.get h' r" by fastforce  | 
| 37725 | 413  | 
from refs assms xs_def have 2: "\<forall>refs. refs_of h (Ref.get h r) refs \<longrightarrow>  | 
414  | 
(\<forall>ref\<in>set refs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref)"  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
415  | 
by (fastforce dest: refs_of_is_fun)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
416  | 
from refs_of_invariant [OF refs 2] xs_def x_eq show ?thesis  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
417  | 
unfolding refs_of'_def' by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
418  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
419  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
420  | 
lemma list_of_invariant:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
421  | 
  assumes "list_of h (r::('a::heap) node) xs"
 | 
| 37725 | 422  | 
assumes "\<forall>refs. refs_of h r refs \<longrightarrow> (\<forall>ref \<in> set refs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
423  | 
shows "list_of h' r xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
424  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
425  | 
proof (induct xs arbitrary: r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
426  | 
case Nil thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
427  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
428  | 
case (Cons x xs')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
429  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
430  | 
from Cons(2) obtain ref where Node: "r = Node x ref"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
431  | 
by (cases r, auto)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
432  | 
from Cons(2) obtain rs where rs_def: "refs_of h r rs" by (rule list_of_refs_of)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
433  | 
from Node rs_def obtain rss where refs_of: "refs_of h r (ref#rss)" and rss_def: "rs = ref#rss" by auto  | 
| 37725 | 434  | 
from Cons(3) Node refs_of have ref_eq: "Ref.get h ref = Ref.get h' ref"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
435  | 
by auto  | 
| 37725 | 436  | 
from Cons(2) ref_eq Node have 1: "list_of h (Ref.get h' ref) xs'" by simp  | 
437  | 
from refs_of Node ref_eq have refs_of_ref: "refs_of h (Ref.get h' ref) rss" by simp  | 
|
438  | 
from Cons(3) rs_def have rs_heap_eq: "\<forall>ref\<in>set rs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref" by simp  | 
|
439  | 
from refs_of_ref rs_heap_eq rss_def have 2: "\<forall>refs. refs_of h (Ref.get h' ref) refs \<longrightarrow>  | 
|
440  | 
(\<forall>ref\<in>set refs. Ref.present h ref \<and> Ref.present h' ref \<and> Ref.get h ref = Ref.get h' ref)"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
441  | 
by (auto dest: refs_of_is_fun)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
442  | 
from Cons(1)[OF 1 2]  | 
| 37725 | 443  | 
have "list_of h' (Ref.get h' ref) xs'" .  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
444  | 
with Node show ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
445  | 
unfolding list_of'_def  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
446  | 
by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
447  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
448  | 
|
| 40671 | 449  | 
lemma effect_ref:  | 
450  | 
assumes "effect (ref v) h h' x"  | 
|
| 
37771
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
451  | 
obtains "Ref.get h' x = v"  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
452  | 
and "\<not> Ref.present h x"  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
453  | 
and "Ref.present h' x"  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
454  | 
and "\<forall>y. Ref.present h y \<longrightarrow> Ref.get h y = Ref.get h' y"  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
455  | 
(* and "lim h' = Suc (lim h)" *)  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
456  | 
and "\<forall>y. Ref.present h y \<longrightarrow> Ref.present h' y"  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
457  | 
using assms  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
458  | 
unfolding Ref.ref_def  | 
| 40671 | 459  | 
apply (elim effect_heapE)  | 
| 
37771
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
460  | 
unfolding Ref.alloc_def  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
461  | 
apply (simp add: Let_def)  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
462  | 
unfolding Ref.present_def  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
463  | 
apply auto  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
464  | 
unfolding Ref.get_def Ref.set_def  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
465  | 
apply auto  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
466  | 
done  | 
| 
 
1bec64044b5e
spelt out relational framework in a consistent way
 
haftmann 
parents: 
37765 
diff
changeset
 | 
467  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
468  | 
lemma make_llist:  | 
| 40671 | 469  | 
assumes "effect (make_llist xs) h h' r"  | 
| 37725 | 470  | 
shows "list_of h' r xs \<and> (\<forall>rs. refs_of h' r rs \<longrightarrow> (\<forall>ref \<in> (set rs). Ref.present h' ref))"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
471  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
472  | 
proof (induct xs arbitrary: h h' r)  | 
| 40671 | 473  | 
case Nil thus ?case by (auto elim: effect_returnE simp add: make_llist.simps)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
474  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
475  | 
case (Cons x xs')  | 
| 40671 | 476  | 
from Cons.prems obtain h1 r1 r' where make_llist: "effect (make_llist xs') h h1 r1"  | 
477  | 
and effect_refnew:"effect (ref r1) h1 h' r'" and Node: "r = Node x r'"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
478  | 
unfolding make_llist.simps  | 
| 40671 | 479  | 
by (auto elim!: effect_bindE effect_returnE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
480  | 
from Cons.hyps[OF make_llist] have list_of_h1: "list_of h1 r1 xs'" ..  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
481  | 
from Cons.hyps[OF make_llist] obtain rs' where rs'_def: "refs_of h1 r1 rs'" by (auto intro: list_of_refs_of)  | 
| 37725 | 482  | 
from Cons.hyps[OF make_llist] rs'_def have refs_present: "\<forall>ref\<in>set rs'. Ref.present h1 ref" by simp  | 
| 40671 | 483  | 
from effect_refnew rs'_def refs_present have refs_unchanged: "\<forall>refs. refs_of h1 r1 refs \<longrightarrow>  | 
| 37725 | 484  | 
(\<forall>ref\<in>set refs. Ref.present h1 ref \<and> Ref.present h' ref \<and> Ref.get h1 ref = Ref.get h' ref)"  | 
| 40671 | 485  | 
by (auto elim!: effect_ref dest: refs_of_is_fun)  | 
486  | 
with list_of_invariant[OF list_of_h1 refs_unchanged] Node effect_refnew have fstgoal: "list_of h' r (x # xs')"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
487  | 
unfolding list_of.simps  | 
| 40671 | 488  | 
by (auto elim!: effect_refE)  | 
| 37725 | 489  | 
from refs_unchanged rs'_def have refs_still_present: "\<forall>ref\<in>set rs'. Ref.present h' ref" by auto  | 
| 40671 | 490  | 
from refs_of_invariant[OF rs'_def refs_unchanged] refs_unchanged Node effect_refnew refs_still_present  | 
| 37725 | 491  | 
have sndgoal: "\<forall>rs. refs_of h' r rs \<longrightarrow> (\<forall>ref\<in>set rs. Ref.present h' ref)"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
492  | 
by (fastforce elim!: effect_refE dest: refs_of_is_fun)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
493  | 
from fstgoal sndgoal show ?case ..  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
494  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
495  | 
|
| 40671 | 496  | 
lemma traverse: "list_of h n r \<Longrightarrow> effect (traverse n) h h r"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
497  | 
proof (induct r arbitrary: n)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
498  | 
case Nil  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
499  | 
thus ?case  | 
| 40671 | 500  | 
by (auto intro: effect_returnI)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
501  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
502  | 
case (Cons x xs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
503  | 
thus ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
504  | 
apply (cases n, auto)  | 
| 40671 | 505  | 
by (auto intro!: effect_bindI effect_returnI effect_lookupI)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
506  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
507  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
508  | 
lemma traverse_make_llist':  | 
| 62026 | 509  | 
assumes effect: "effect (make_llist xs \<bind> traverse) h h' r"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
510  | 
shows "r = xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
511  | 
proof -  | 
| 40671 | 512  | 
from effect obtain h1 r1  | 
513  | 
where makell: "effect (make_llist xs) h h1 r1"  | 
|
514  | 
and trav: "effect (traverse r1) h1 h' r"  | 
|
515  | 
by (auto elim!: effect_bindE)  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
516  | 
from make_llist[OF makell] have "list_of h1 r1 xs" ..  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
517  | 
from traverse [OF this] trav show ?thesis  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
518  | 
using effect_deterministic by fastforce  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
519  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
520  | 
|
| 63167 | 521  | 
section \<open>Proving correctness of in-place reversal\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
522  | 
|
| 63167 | 523  | 
subsection \<open>Definition of in-place reversal\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
524  | 
|
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
525  | 
partial_function (heap) rev' :: "('a::heap) node ref \<Rightarrow> 'a node ref \<Rightarrow> 'a node ref Heap"
 | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
526  | 
where  | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
527  | 
[code]: "rev' q p =  | 
| 37792 | 528  | 
   do {
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
529  | 
v \<leftarrow> !p;  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
530  | 
(case v of  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
531  | 
Empty \<Rightarrow> return q  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
532  | 
| Node x next \<Rightarrow>  | 
| 37792 | 533  | 
        do {
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
534  | 
p := Node x q;  | 
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
535  | 
rev' p next  | 
| 37792 | 536  | 
})  | 
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
537  | 
}"  | 
| 
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
538  | 
|
| 37725 | 539  | 
primrec rev :: "('a:: heap) node \<Rightarrow> 'a node Heap" 
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
540  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
541  | 
"rev Empty = return Empty"  | 
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
542  | 
| "rev (Node x n) = do { q \<leftarrow> ref Empty; p \<leftarrow> ref (Node x n); v \<leftarrow> rev' q p; !v }"
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
543  | 
|
| 63167 | 544  | 
subsection \<open>Correctness Proof\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
545  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
546  | 
lemma rev'_invariant:  | 
| 40671 | 547  | 
assumes "effect (rev' q p) h h' v"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
548  | 
assumes "list_of' h q qs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
549  | 
assumes "list_of' h p ps"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
550  | 
  assumes "\<forall>qrs prs. refs_of' h q qrs \<and> refs_of' h p prs \<longrightarrow> set prs \<inter> set qrs = {}"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
551  | 
shows "\<exists>vs. list_of' h' v vs \<and> vs = (List.rev ps) @ qs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
552  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
553  | 
proof (induct ps arbitrary: qs p q h)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
554  | 
case Nil  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
555  | 
thus ?case  | 
| 
40174
 
97b69fef5229
use partial_function instead of MREC combinator; curried rev'
 
krauss 
parents: 
39302 
diff
changeset
 | 
556  | 
unfolding rev'.simps[of q p] list_of'_def  | 
| 40671 | 557  | 
by (auto elim!: effect_bindE effect_lookupE effect_returnE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
558  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
559  | 
case (Cons x xs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
560  | 
(*"LinkedList.list_of h' (get_ref v h') (List.rev xs @ x # qsa)"*)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
561  | 
from Cons(4) obtain ref where  | 
| 37725 | 562  | 
p_is_Node: "Ref.get h p = Node x ref"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
563  | 
(*and "ref_present ref h"*)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
564  | 
and list_of'_ref: "list_of' h ref xs"  | 
| 37725 | 565  | 
unfolding list_of'_def by (cases "Ref.get h p", auto)  | 
| 40671 | 566  | 
from p_is_Node Cons(2) have effect_rev': "effect (rev' p ref) (Ref.set p (Node x q) h) h' v"  | 
567  | 
by (auto simp add: rev'.simps [of q p] elim!: effect_bindE effect_lookupE effect_updateE)  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
568  | 
from Cons(3) obtain qrs where qrs_def: "refs_of' h q qrs" by (elim list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
569  | 
from Cons(4) obtain prs where prs_def: "refs_of' h p prs" by (elim list_of'_refs_of')  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
570  | 
  from qrs_def prs_def Cons(5) have distinct_pointers: "set qrs \<inter> set prs = {}" by fastforce
 | 
| 
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
571  | 
from qrs_def prs_def distinct_pointers refs_of'E have p_notin_qrs: "p \<notin> set qrs" by fastforce  | 
| 37725 | 572  | 
from Cons(3) qrs_def this have 1: "list_of' (Ref.set p (Node x q) h) p (x#qs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
573  | 
unfolding list_of'_def  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
574  | 
apply (simp)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
575  | 
unfolding list_of'_def[symmetric]  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
576  | 
by (simp add: list_of'_set_ref)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
577  | 
from list_of'_refs_of'2[OF Cons(4)] p_is_Node prs_def obtain refs where refs_def: "refs_of' h ref refs" and prs_refs: "prs = p # refs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
578  | 
unfolding refs_of'_def' by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
579  | 
from prs_refs prs_def have p_not_in_refs: "p \<notin> set refs"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
580  | 
by (fastforce dest!: refs_of'_distinct)  | 
| 37725 | 581  | 
with refs_def p_is_Node list_of'_ref have 2: "list_of' (Ref.set p (Node x q) h) ref xs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
582  | 
by (auto simp add: list_of'_set_ref)  | 
| 37725 | 583  | 
from p_notin_qrs qrs_def have refs_of1: "refs_of' (Ref.set p (Node x q) h) p (p#qrs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
584  | 
unfolding refs_of'_def'  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
585  | 
apply (simp)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
586  | 
unfolding refs_of'_def'[symmetric]  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
587  | 
by (simp add: refs_of'_set_ref)  | 
| 37725 | 588  | 
from p_not_in_refs p_is_Node refs_def have refs_of2: "refs_of' (Ref.set p (Node x q) h) ref refs"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
589  | 
by (simp add: refs_of'_set_ref)  | 
| 37725 | 590  | 
  from p_not_in_refs refs_of1 refs_of2 distinct_pointers prs_refs have 3: "\<forall>qrs prs. refs_of' (Ref.set p (Node x q) h) p qrs \<and> refs_of' (Ref.set p (Node x q) h) ref prs \<longrightarrow> set prs \<inter> set qrs = {}"
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
591  | 
apply - apply (rule allI)+ apply (rule impI) apply (erule conjE)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
592  | 
apply (drule refs_of'_is_fun) back back apply assumption  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
593  | 
apply (drule refs_of'_is_fun) back back apply assumption  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
594  | 
apply auto done  | 
| 40671 | 595  | 
from Cons.hyps [OF effect_rev' 1 2 3] show ?case by simp  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
596  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
597  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
598  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
599  | 
lemma rev_correctness:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
600  | 
assumes list_of_h: "list_of h r xs"  | 
| 37725 | 601  | 
assumes validHeap: "\<forall>refs. refs_of h r refs \<longrightarrow> (\<forall>r \<in> set refs. Ref.present h r)"  | 
| 40671 | 602  | 
assumes effect_rev: "effect (rev r) h h' r'"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
603  | 
shows "list_of h' r' (List.rev xs)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
604  | 
using assms  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
605  | 
proof (cases r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
606  | 
case Empty  | 
| 40671 | 607  | 
with list_of_h effect_rev show ?thesis  | 
608  | 
by (auto simp add: list_of_Empty elim!: effect_returnE)  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
609  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
610  | 
case (Node x ps)  | 
| 40671 | 611  | 
with effect_rev obtain p q h1 h2 h3 v where  | 
612  | 
init: "effect (ref Empty) h h1 q"  | 
|
613  | 
"effect (ref (Node x ps)) h1 h2 p"  | 
|
614  | 
and effect_rev':"effect (rev' q p) h2 h3 v"  | 
|
615  | 
and lookup: "effect (!v) h3 h' r'"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
616  | 
using rev.simps  | 
| 40671 | 617  | 
by (auto elim!: effect_bindE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
618  | 
from init have a1:"list_of' h2 q []"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
619  | 
unfolding list_of'_def  | 
| 40671 | 620  | 
by (auto elim!: effect_ref)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
621  | 
from list_of_h obtain refs where refs_def: "refs_of h r refs" by (rule list_of_refs_of)  | 
| 37725 | 622  | 
from validHeap init refs_def have heap_eq: "\<forall>refs. refs_of h r refs \<longrightarrow> (\<forall>ref\<in>set refs. Ref.present h ref \<and> Ref.present h2 ref \<and> Ref.get h ref = Ref.get h2 ref)"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
623  | 
by (fastforce elim!: effect_ref dest: refs_of_is_fun)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
624  | 
from list_of_invariant[OF list_of_h heap_eq] have "list_of h2 r xs" .  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
625  | 
from init this Node have a2: "list_of' h2 p xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
626  | 
apply -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
627  | 
unfolding list_of'_def  | 
| 40671 | 628  | 
apply (auto elim!: effect_refE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
629  | 
done  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
630  | 
from init have refs_of_q: "refs_of' h2 q [q]"  | 
| 40671 | 631  | 
by (auto elim!: effect_ref)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
632  | 
from refs_def Node have refs_of'_ps: "refs_of' h ps refs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
633  | 
by (auto simp add: refs_of'_def'[symmetric])  | 
| 37725 | 634  | 
from validHeap refs_def have all_ref_present: "\<forall>r\<in>set refs. Ref.present h r" by simp  | 
| 38410 | 635  | 
from init refs_of'_ps this  | 
636  | 
have heap_eq: "\<forall>refs. refs_of' h ps refs \<longrightarrow> (\<forall>ref\<in>set refs. Ref.present h ref \<and> Ref.present h2 ref \<and> Ref.get h ref = Ref.get h2 ref)"  | 
|
| 40671 | 637  | 
by (auto elim!: effect_ref [where ?'a="'a node", where ?'b="'a node", where ?'c="'a node"] dest: refs_of'_is_fun)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
638  | 
from refs_of'_invariant[OF refs_of'_ps this] have "refs_of' h2 ps refs" .  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
639  | 
with init have refs_of_p: "refs_of' h2 p (p#refs)"  | 
| 40671 | 640  | 
by (auto elim!: effect_refE simp add: refs_of'_def')  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
641  | 
with init all_ref_present have q_is_new: "q \<notin> set (p#refs)"  | 
| 40671 | 642  | 
by (auto elim!: effect_refE intro!: Ref.noteq_I)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
643  | 
  from refs_of_p refs_of_q q_is_new have a3: "\<forall>qrs prs. refs_of' h2 q qrs \<and> refs_of' h2 p prs \<longrightarrow> set prs \<inter> set qrs = {}"
 | 
| 
57816
 
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
 
blanchet 
parents: 
56073 
diff
changeset
 | 
644  | 
by (fastforce simp only: list.set dest: refs_of'_is_fun)  | 
| 40671 | 645  | 
from rev'_invariant [OF effect_rev' a1 a2 a3] have "list_of h3 (Ref.get h3 v) (List.rev xs)"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
646  | 
unfolding list_of'_def by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
647  | 
with lookup show ?thesis  | 
| 40671 | 648  | 
by (auto elim: effect_lookupE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
649  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
650  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
651  | 
|
| 63167 | 652  | 
section \<open>The merge function on Linked Lists\<close>  | 
653  | 
text \<open>We also prove merge correct\<close>  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
654  | 
|
| 63167 | 655  | 
text\<open>First, we define merge on lists in a natural way.\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
656  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
657  | 
fun Lmerge :: "('a::ord) list \<Rightarrow> 'a list \<Rightarrow> 'a list"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
658  | 
where  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
659  | 
"Lmerge (x#xs) (y#ys) =  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
660  | 
(if x \<le> y then x # Lmerge xs (y#ys) else y # Lmerge (x#xs) ys)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
661  | 
| "Lmerge [] ys = ys"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
662  | 
| "Lmerge xs [] = xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
663  | 
|
| 63167 | 664  | 
subsection \<open>Definition of merge function\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
665  | 
|
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
666  | 
partial_function (heap) merge :: "('a::{heap, ord}) node ref \<Rightarrow> 'a node ref \<Rightarrow> 'a node ref Heap"
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
667  | 
where  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
668  | 
[code]: "merge p q = (do { v \<leftarrow> !p; w \<leftarrow> !q;
 | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
669  | 
(case v of Empty \<Rightarrow> return q  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
670  | 
| Node valp np \<Rightarrow>  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
671  | 
(case w of Empty \<Rightarrow> return p  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
672  | 
| Node valq nq \<Rightarrow>  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
673  | 
                       if (valp \<le> valq) then do {
 | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
674  | 
npq \<leftarrow> merge np q;  | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
675  | 
p := Node valp npq;  | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
676  | 
return p }  | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
677  | 
                       else do {
 | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
678  | 
pnq \<leftarrow> merge p nq;  | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
679  | 
q := Node valq pnq;  | 
| 
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
680  | 
return q }))})"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
681  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
682  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
683  | 
lemma if_return: "(if P then return x else return y) = return (if P then x else y)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
684  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
685  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
686  | 
lemma if_distrib_App: "(if P then f else g) x = (if P then f x else g x)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
687  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
688  | 
lemma redundant_if: "(if P then (if P then x else z) else y) = (if P then x else y)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
689  | 
"(if P then x else (if P then z else y)) = (if P then x else y)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
690  | 
by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
691  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
692  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
693  | 
|
| 
55414
 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 
blanchet 
parents: 
53108 
diff
changeset
 | 
694  | 
lemma sum_distrib: "case_sum fl fr (case x of Empty \<Rightarrow> y | Node v n \<Rightarrow> (z v n)) = (case x of Empty \<Rightarrow> case_sum fl fr y | Node v n \<Rightarrow> case_sum fl fr (z v n))"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
695  | 
by (cases x) auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
696  | 
|
| 63167 | 697  | 
subsection \<open>Induction refinement by applying the abstraction function to our induct rule\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
698  | 
|
| 63167 | 699  | 
text \<open>From our original induction rule Lmerge.induct, we derive a new rule with our list_of' predicate\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
700  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
701  | 
lemma merge_induct2:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
702  | 
  assumes "list_of' h (p::'a::{heap, ord} node ref) xs"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
703  | 
assumes "list_of' h q ys"  | 
| 37725 | 704  | 
assumes "\<And> ys p q. \<lbrakk> list_of' h p []; list_of' h q ys; Ref.get h p = Empty \<rbrakk> \<Longrightarrow> P p q [] ys"  | 
705  | 
assumes "\<And> x xs' p q pn. \<lbrakk> list_of' h p (x#xs'); list_of' h q []; Ref.get h p = Node x pn; Ref.get h q = Empty \<rbrakk> \<Longrightarrow> P p q (x#xs') []"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
706  | 
assumes "\<And> x xs' y ys' p q pn qn.  | 
| 37725 | 707  | 
\<lbrakk> list_of' h p (x#xs'); list_of' h q (y#ys'); Ref.get h p = Node x pn; Ref.get h q = Node y qn;  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
708  | 
x \<le> y; P pn q xs' (y#ys') \<rbrakk>  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
709  | 
\<Longrightarrow> P p q (x#xs') (y#ys')"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
710  | 
assumes "\<And> x xs' y ys' p q pn qn.  | 
| 37725 | 711  | 
\<lbrakk> list_of' h p (x#xs'); list_of' h q (y#ys'); Ref.get h p = Node x pn; Ref.get h q = Node y qn;  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
712  | 
\<not> x \<le> y; P p qn (x#xs') ys'\<rbrakk>  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
713  | 
\<Longrightarrow> P p q (x#xs') (y#ys')"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
714  | 
shows "P p q xs ys"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
715  | 
using assms(1-2)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
716  | 
proof (induct xs ys arbitrary: p q rule: Lmerge.induct)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
717  | 
case (2 ys)  | 
| 37725 | 718  | 
from 2(1) have "Ref.get h p = Empty" unfolding list_of'_def by simp  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
719  | 
with 2(1-2) assms(3) show ?case by blast  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
720  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
721  | 
case (3 x xs')  | 
| 37725 | 722  | 
from 3(1) obtain pn where Node: "Ref.get h p = Node x pn" by (rule list_of'_Cons)  | 
723  | 
from 3(2) have "Ref.get h q = Empty" unfolding list_of'_def by simp  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
724  | 
with Node 3(1-2) assms(4) show ?case by blast  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
725  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
726  | 
case (1 x xs' y ys')  | 
| 37725 | 727  | 
from 1(3) obtain pn where pNode:"Ref.get h p = Node x pn"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
728  | 
and list_of'_pn: "list_of' h pn xs'" by (rule list_of'_Cons)  | 
| 37725 | 729  | 
from 1(4) obtain qn where qNode:"Ref.get h q = Node y qn"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
730  | 
and list_of'_qn: "list_of' h qn ys'" by (rule list_of'_Cons)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
731  | 
show ?case  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
732  | 
proof (cases "x \<le> y")  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
733  | 
case True  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
734  | 
from 1(1)[OF True list_of'_pn 1(4)] assms(5) 1(3-4) pNode qNode True  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
735  | 
show ?thesis by blast  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
736  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
737  | 
case False  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
738  | 
from 1(2)[OF False 1(3) list_of'_qn] assms(6) 1(3-4) pNode qNode False  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
739  | 
show ?thesis by blast  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
740  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
741  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
742  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
743  | 
|
| 63167 | 744  | 
text \<open>secondly, we add the effect statement in the premise, and derive the effect statements for the single cases which we then eliminate with our effect elim rules.\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
745  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
746  | 
lemma merge_induct3:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
747  | 
assumes "list_of' h p xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
748  | 
assumes "list_of' h q ys"  | 
| 40671 | 749  | 
assumes "effect (merge p q) h h' r"  | 
| 37725 | 750  | 
assumes "\<And> ys p q. \<lbrakk> list_of' h p []; list_of' h q ys; Ref.get h p = Empty \<rbrakk> \<Longrightarrow> P p q h h q [] ys"  | 
751  | 
assumes "\<And> x xs' p q pn. \<lbrakk> list_of' h p (x#xs'); list_of' h q []; Ref.get h p = Node x pn; Ref.get h q = Empty \<rbrakk> \<Longrightarrow> P p q h h p (x#xs') []"  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
752  | 
assumes "\<And> x xs' y ys' p q pn qn h1 r1 h'.  | 
| 37725 | 753  | 
\<lbrakk> list_of' h p (x#xs'); list_of' h q (y#ys');Ref.get h p = Node x pn; Ref.get h q = Node y qn;  | 
| 40671 | 754  | 
x \<le> y; effect (merge pn q) h h1 r1 ; P pn q h h1 r1 xs' (y#ys'); h' = Ref.set p (Node x r1) h1 \<rbrakk>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
755  | 
\<Longrightarrow> P p q h h' p (x#xs') (y#ys')"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
756  | 
assumes "\<And> x xs' y ys' p q pn qn h1 r1 h'.  | 
| 37725 | 757  | 
\<lbrakk> list_of' h p (x#xs'); list_of' h q (y#ys'); Ref.get h p = Node x pn; Ref.get h q = Node y qn;  | 
| 40671 | 758  | 
\<not> x \<le> y; effect (merge p qn) h h1 r1; P p qn h h1 r1 (x#xs') ys'; h' = Ref.set q (Node y r1) h1 \<rbrakk>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
759  | 
\<Longrightarrow> P p q h h' q (x#xs') (y#ys')"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
760  | 
shows "P p q h h' r xs ys"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
761  | 
using assms(3)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
762  | 
proof (induct arbitrary: h' r rule: merge_induct2[OF assms(1) assms(2)])  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
763  | 
case (1 ys p q)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
764  | 
from 1(3-4) have "h = h' \<and> r = q"  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
765  | 
unfolding merge.simps[of p q]  | 
| 40671 | 766  | 
by (auto elim!: effect_lookupE effect_bindE effect_returnE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
767  | 
with assms(4)[OF 1(1) 1(2) 1(3)] show ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
768  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
769  | 
case (2 x xs' p q pn)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
770  | 
from 2(3-5) have "h = h' \<and> r = p"  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
771  | 
unfolding merge.simps[of p q]  | 
| 40671 | 772  | 
by (auto elim!: effect_lookupE effect_bindE effect_returnE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
773  | 
with assms(5)[OF 2(1-4)] show ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
774  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
775  | 
case (3 x xs' y ys' p q pn qn)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
776  | 
from 3(3-5) 3(7) obtain h1 r1 where  | 
| 40671 | 777  | 
1: "effect (merge pn q) h h1 r1"  | 
| 37725 | 778  | 
and 2: "h' = Ref.set p (Node x r1) h1 \<and> r = p"  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
779  | 
unfolding merge.simps[of p q]  | 
| 40671 | 780  | 
by (auto elim!: effect_lookupE effect_bindE effect_returnE effect_ifE effect_updateE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
781  | 
from 3(6)[OF 1] assms(6) [OF 3(1-5)] 1 2 show ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
782  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
783  | 
case (4 x xs' y ys' p q pn qn)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
784  | 
from 4(3-5) 4(7) obtain h1 r1 where  | 
| 40671 | 785  | 
1: "effect (merge p qn) h h1 r1"  | 
| 37725 | 786  | 
and 2: "h' = Ref.set q (Node y r1) h1 \<and> r = q"  | 
| 
53108
 
d84c8de81edf
replaced use of obsolete MREC by partial_function (heap)
 
krauss 
parents: 
51272 
diff
changeset
 | 
787  | 
unfolding merge.simps[of p q]  | 
| 40671 | 788  | 
by (auto elim!: effect_lookupE effect_bindE effect_returnE effect_ifE effect_updateE)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
789  | 
from 4(6)[OF 1] assms(7) [OF 4(1-5)] 1 2 show ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
790  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
791  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
792  | 
|
| 63167 | 793  | 
subsection \<open>Proving merge correct\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
794  | 
|
| 63167 | 795  | 
text \<open>As many parts of the following three proofs are identical, we could actually move the  | 
796  | 
same reasoning into an extended induction rule\<close>  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
797  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
798  | 
lemma merge_unchanged:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
799  | 
assumes "refs_of' h p xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
800  | 
assumes "refs_of' h q ys"  | 
| 40671 | 801  | 
assumes "effect (merge p q) h h' r'"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
802  | 
  assumes "set xs \<inter> set ys = {}"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
803  | 
assumes "r \<notin> set xs \<union> set ys"  | 
| 37725 | 804  | 
shows "Ref.get h r = Ref.get h' r"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
805  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
806  | 
from assms(1) obtain ps where ps_def: "list_of' h p ps" by (rule refs_of'_list_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
807  | 
from assms(2) obtain qs where qs_def: "list_of' h q qs" by (rule refs_of'_list_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
808  | 
show ?thesis using assms(1) assms(2) assms(4) assms(5)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
809  | 
proof (induct arbitrary: xs ys r rule: merge_induct3[OF ps_def qs_def assms(3)])  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
810  | 
case 1 thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
811  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
812  | 
case 2 thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
813  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
814  | 
case (3 x xs' y ys' p q pn qn h1 r1 h' xs ys r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
815  | 
from 3(9) 3(3) obtain pnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
816  | 
where pnrs_def: "xs = p#pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
817  | 
and refs_of'_pn: "refs_of' h pn pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
818  | 
by (rule refs_of'_Node)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
819  | 
with 3(12) have r_in: "r \<notin> set pnrs \<union> set ys" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
820  | 
from pnrs_def 3(12) have "r \<noteq> p" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
821  | 
with 3(11) 3(12) pnrs_def refs_of'_distinct[OF 3(9)] have p_in: "p \<notin> set pnrs \<union> set ys" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
822  | 
    from 3(11) pnrs_def have no_inter: "set pnrs \<inter> set ys = {}" by auto
 | 
| 37725 | 823  | 
from 3(7)[OF refs_of'_pn 3(10) this p_in] 3(3) have p_is_Node: "Ref.get h1 p = Node x pn"  | 
824  | 
by simp  | 
|
| 63167 | 825  | 
from 3(7)[OF refs_of'_pn 3(10) no_inter r_in] 3(8) \<open>r \<noteq> p\<close> show ?case  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
826  | 
by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
827  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
828  | 
case (4 x xs' y ys' p q pn qn h1 r1 h' xs ys r)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
829  | 
from 4(10) 4(4) obtain qnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
830  | 
where qnrs_def: "ys = q#qnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
831  | 
and refs_of'_qn: "refs_of' h qn qnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
832  | 
by (rule refs_of'_Node)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
833  | 
with 4(12) have r_in: "r \<notin> set xs \<union> set qnrs" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
834  | 
from qnrs_def 4(12) have "r \<noteq> q" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
835  | 
with 4(11) 4(12) qnrs_def refs_of'_distinct[OF 4(10)] have q_in: "q \<notin> set xs \<union> set qnrs" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
836  | 
    from 4(11) qnrs_def have no_inter: "set xs \<inter> set qnrs = {}" by auto
 | 
| 37725 | 837  | 
from 4(7)[OF 4(9) refs_of'_qn this q_in] 4(4) have q_is_Node: "Ref.get h1 q = Node y qn" by simp  | 
| 63167 | 838  | 
from 4(7)[OF 4(9) refs_of'_qn no_inter r_in] 4(8) \<open>r \<noteq> q\<close> show ?case  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
839  | 
by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
840  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
841  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
842  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
843  | 
lemma refs_of'_merge:  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
844  | 
assumes "refs_of' h p xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
845  | 
assumes "refs_of' h q ys"  | 
| 40671 | 846  | 
assumes "effect (merge p q) h h' r"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
847  | 
  assumes "set xs \<inter> set ys = {}"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
848  | 
assumes "refs_of' h' r rs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
849  | 
shows "set rs \<subseteq> set xs \<union> set ys"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
850  | 
proof -  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
851  | 
from assms(1) obtain ps where ps_def: "list_of' h p ps" by (rule refs_of'_list_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
852  | 
from assms(2) obtain qs where qs_def: "list_of' h q qs" by (rule refs_of'_list_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
853  | 
show ?thesis using assms(1) assms(2) assms(4) assms(5)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
854  | 
proof (induct arbitrary: xs ys rs rule: merge_induct3[OF ps_def qs_def assms(3)])  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
855  | 
case 1  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
856  | 
from 1(5) 1(7) have "rs = ys" by (fastforce simp add: refs_of'_is_fun)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
857  | 
thus ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
858  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
859  | 
case 2  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
860  | 
from 2(5) 2(8) have "rs = xs" by (auto simp add: refs_of'_is_fun)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
861  | 
thus ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
862  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
863  | 
case (3 x xs' y ys' p q pn qn h1 r1 h' xs ys rs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
864  | 
from 3(9) 3(3) obtain pnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
865  | 
where pnrs_def: "xs = p#pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
866  | 
and refs_of'_pn: "refs_of' h pn pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
867  | 
by (rule refs_of'_Node)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
868  | 
from 3(10) 3(9) 3(11) pnrs_def refs_of'_distinct[OF 3(9)] have p_in: "p \<notin> set pnrs \<union> set ys" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
869  | 
    from 3(11) pnrs_def have no_inter: "set pnrs \<inter> set ys = {}" by auto
 | 
| 37725 | 870  | 
from merge_unchanged[OF refs_of'_pn 3(10) 3(6) no_inter p_in] have p_stays: "Ref.get h1 p = Ref.get h p" ..  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
871  | 
from 3 p_stays obtain r1s  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
872  | 
where rs_def: "rs = p#r1s" and refs_of'_r1:"refs_of' h1 r1 r1s"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
873  | 
by (auto elim: refs_of'_set_next_ref)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
874  | 
from 3(7)[OF refs_of'_pn 3(10) no_inter refs_of'_r1] rs_def pnrs_def show ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
875  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
876  | 
case (4 x xs' y ys' p q pn qn h1 r1 h' xs ys rs)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
877  | 
from 4(10) 4(4) obtain qnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
878  | 
where qnrs_def: "ys = q#qnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
879  | 
and refs_of'_qn: "refs_of' h qn qnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
880  | 
by (rule refs_of'_Node)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
881  | 
from 4(10) 4(9) 4(11) qnrs_def refs_of'_distinct[OF 4(10)] have q_in: "q \<notin> set xs \<union> set qnrs" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
882  | 
    from 4(11) qnrs_def have no_inter: "set xs \<inter> set qnrs = {}" by auto
 | 
| 37725 | 883  | 
from merge_unchanged[OF 4(9) refs_of'_qn 4(6) no_inter q_in] have q_stays: "Ref.get h1 q = Ref.get h q" ..  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
884  | 
from 4 q_stays obtain r1s  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
885  | 
where rs_def: "rs = q#r1s" and refs_of'_r1:"refs_of' h1 r1 r1s"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
886  | 
by (auto elim: refs_of'_set_next_ref)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
887  | 
from 4(7)[OF 4(9) refs_of'_qn no_inter refs_of'_r1] rs_def qnrs_def show ?case by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
888  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
889  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
890  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
891  | 
lemma  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
892  | 
assumes "list_of' h p xs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
893  | 
assumes "list_of' h q ys"  | 
| 40671 | 894  | 
assumes "effect (merge p q) h h' r"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
895  | 
  assumes "\<forall>qrs prs. refs_of' h q qrs \<and> refs_of' h p prs \<longrightarrow> set prs \<inter> set qrs = {}"
 | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
896  | 
shows "list_of' h' r (Lmerge xs ys)"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
897  | 
using assms(4)  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
898  | 
proof (induct rule: merge_induct3[OF assms(1-3)])  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
899  | 
case 1  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
900  | 
thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
901  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
902  | 
case 2  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
903  | 
thus ?case by simp  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
904  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
905  | 
case (3 x xs' y ys' p q pn qn h1 r1 h')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
906  | 
from 3(1) obtain prs where prs_def: "refs_of' h p prs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
907  | 
from 3(2) obtain qrs where qrs_def: "refs_of' h q qrs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
908  | 
from prs_def 3(3) obtain pnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
909  | 
where pnrs_def: "prs = p#pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
910  | 
and refs_of'_pn: "refs_of' h pn pnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
911  | 
by (rule refs_of'_Node)  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
912  | 
from prs_def qrs_def 3(9) pnrs_def refs_of'_distinct[OF prs_def] have p_in: "p \<notin> set pnrs \<union> set qrs" by fastforce  | 
| 
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
913  | 
  from prs_def qrs_def 3(9) pnrs_def have no_inter: "set pnrs \<inter> set qrs = {}" by fastforce
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
914  | 
  from no_inter refs_of'_pn qrs_def have no_inter2: "\<forall>qrs prs. refs_of' h q qrs \<and> refs_of' h pn prs \<longrightarrow> set prs \<inter> set qrs = {}"
 | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
915  | 
by (fastforce dest: refs_of'_is_fun)  | 
| 37725 | 916  | 
from merge_unchanged[OF refs_of'_pn qrs_def 3(6) no_inter p_in] have p_stays: "Ref.get h1 p = Ref.get h p" ..  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
917  | 
from 3(7)[OF no_inter2] obtain rs where rs_def: "refs_of' h1 r1 rs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
918  | 
from refs_of'_merge[OF refs_of'_pn qrs_def 3(6) no_inter this] p_in have p_rs: "p \<notin> set rs" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
919  | 
with 3(7)[OF no_inter2] 3(1-5) 3(8) p_rs rs_def p_stays  | 
| 
56073
 
29e308b56d23
enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
 
nipkow 
parents: 
55584 
diff
changeset
 | 
920  | 
show ?case by (auto simp: list_of'_set_ref)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
921  | 
next  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
922  | 
case (4 x xs' y ys' p q pn qn h1 r1 h')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
923  | 
from 4(1) obtain prs where prs_def: "refs_of' h p prs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
924  | 
from 4(2) obtain qrs where qrs_def: "refs_of' h q qrs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
925  | 
from qrs_def 4(4) obtain qnrs  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
926  | 
where qnrs_def: "qrs = q#qnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
927  | 
and refs_of'_qn: "refs_of' h qn qnrs"  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
928  | 
by (rule refs_of'_Node)  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
929  | 
from prs_def qrs_def 4(9) qnrs_def refs_of'_distinct[OF qrs_def] have q_in: "q \<notin> set prs \<union> set qnrs" by fastforce  | 
| 
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
930  | 
  from prs_def qrs_def 4(9) qnrs_def have no_inter: "set prs \<inter> set qnrs = {}" by fastforce
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
931  | 
  from no_inter refs_of'_qn prs_def have no_inter2: "\<forall>qrs prs. refs_of' h qn qrs \<and> refs_of' h p prs \<longrightarrow> set prs \<inter> set qrs = {}"
 | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
41549 
diff
changeset
 | 
932  | 
by (fastforce dest: refs_of'_is_fun)  | 
| 37725 | 933  | 
from merge_unchanged[OF prs_def refs_of'_qn 4(6) no_inter q_in] have q_stays: "Ref.get h1 q = Ref.get h q" ..  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
934  | 
from 4(7)[OF no_inter2] obtain rs where rs_def: "refs_of' h1 r1 rs" by (rule list_of'_refs_of')  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
935  | 
from refs_of'_merge[OF prs_def refs_of'_qn 4(6) no_inter this] q_in have q_rs: "q \<notin> set rs" by auto  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
936  | 
with 4(7)[OF no_inter2] 4(1-5) 4(8) q_rs rs_def q_stays  | 
| 
56073
 
29e308b56d23
enhanced simplifier solver for preconditions of rewrite rule, can now deal with conjunctions
 
nipkow 
parents: 
55584 
diff
changeset
 | 
937  | 
show ?case by (auto simp: list_of'_set_ref)  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
938  | 
qed  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
939  | 
|
| 63167 | 940  | 
section \<open>Code generation\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
941  | 
|
| 63167 | 942  | 
text \<open>A simple example program\<close>  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
943  | 
|
| 62026 | 944  | 
definition test_1 where "test_1 = (do { ll_xs \<leftarrow> make_llist [1..(15::int)]; xs \<leftarrow> traverse ll_xs; return xs })" 
 | 
945  | 
definition test_2 where "test_2 = (do { ll_xs \<leftarrow> make_llist [1..(15::int)]; ll_ys \<leftarrow> rev ll_xs; ys \<leftarrow> traverse ll_ys; return ys })"
 | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
946  | 
|
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
947  | 
definition test_3 where "test_3 =  | 
| 37792 | 948  | 
  (do {
 | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
949  | 
ll_xs \<leftarrow> make_llist (filter (%n. n mod 2 = 0) [2..8]);  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
950  | 
ll_ys \<leftarrow> make_llist (filter (%n. n mod 2 = 1) [5..11]);  | 
| 37725 | 951  | 
r \<leftarrow> ref ll_xs;  | 
952  | 
q \<leftarrow> ref ll_ys;  | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
953  | 
p \<leftarrow> merge r q;  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
954  | 
ll_zs \<leftarrow> !p;  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
955  | 
zs \<leftarrow> traverse ll_zs;  | 
| 
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
956  | 
return zs  | 
| 37792 | 957  | 
})"  | 
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
958  | 
|
| 
35041
 
6eb917794a5c
avoid upto in generated code (is infix operator in library.ML)
 
haftmann 
parents: 
34051 
diff
changeset
 | 
959  | 
code_reserved SML upto  | 
| 
 
6eb917794a5c
avoid upto in generated code (is infix operator in library.ML)
 
haftmann 
parents: 
34051 
diff
changeset
 | 
960  | 
|
| 63167 | 961  | 
ML_val \<open>@{code test_1} ()\<close>
 | 
962  | 
ML_val \<open>@{code test_2} ()\<close>
 | 
|
963  | 
ML_val \<open>@{code test_3} ()\<close>
 | 
|
| 
34051
 
1a82e2e29d67
added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
 
bulwahn 
parents:  
diff
changeset
 | 
964  | 
|
| 
50630
 
1ea90e8046dc
code checking for Scala is mandatory, since Scala is now required anyway for Isabelle
 
haftmann 
parents: 
48430 
diff
changeset
 | 
965  | 
export_code test_1 test_2 test_3 checking SML SML_imp OCaml? OCaml_imp? Haskell? Scala Scala_imp  | 
| 
37750
 
82e0fe8b07eb
dropped ancient in-place compilation of SML; more tests
 
haftmann 
parents: 
37725 
diff
changeset
 | 
966  | 
|
| 37725 | 967  | 
end  |