| author | wenzelm | 
| Sun, 04 Mar 2012 19:24:05 +0100 | |
| changeset 46815 | 6bccb1dc9bc3 | 
| parent 46029 | 4a19e3d147c3 | 
| child 48072 | ace701efe203 | 
| permissions | -rw-r--r-- | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 1 | (* Title: HOL/Imperative_HOL/Heap_Monad.thy | 
| 26170 | 2 | Author: John Matthews, Galois Connections; Alexander Krauss, Lukas Bulwahn & Florian Haftmann, TU Muenchen | 
| 3 | *) | |
| 4 | ||
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 5 | header {* A monad with a polymorphic heap and primitive reasoning infrastructure *}
 | 
| 26170 | 6 | |
| 7 | theory Heap_Monad | |
| 41413 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
40671diff
changeset | 8 | imports | 
| 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
40671diff
changeset | 9 | Heap | 
| 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
40671diff
changeset | 10 | "~~/src/HOL/Library/Monad_Syntax" | 
| 
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
 wenzelm parents: 
40671diff
changeset | 11 | "~~/src/HOL/Library/Code_Natural" | 
| 26170 | 12 | begin | 
| 13 | ||
| 14 | subsection {* The monad *}
 | |
| 15 | ||
| 37758 | 16 | subsubsection {* Monad construction *}
 | 
| 26170 | 17 | |
| 18 | text {* Monadic heap actions either produce values
 | |
| 19 | and transform the heap, or fail *} | |
| 37709 | 20 | datatype 'a Heap = Heap "heap \<Rightarrow> ('a \<times> heap) option"
 | 
| 26170 | 21 | |
| 40266 
d72f1f734e5a
remove term_of equations for Heap type explicitly
 haftmann parents: 
40173diff
changeset | 22 | lemma [code, code del]: | 
| 
d72f1f734e5a
remove term_of equations for Heap type explicitly
 haftmann parents: 
40173diff
changeset | 23 | "(Code_Evaluation.term_of :: 'a::typerep Heap \<Rightarrow> Code_Evaluation.term) = Code_Evaluation.term_of" | 
| 
d72f1f734e5a
remove term_of equations for Heap type explicitly
 haftmann parents: 
40173diff
changeset | 24 | .. | 
| 
d72f1f734e5a
remove term_of equations for Heap type explicitly
 haftmann parents: 
40173diff
changeset | 25 | |
| 37709 | 26 | primrec execute :: "'a Heap \<Rightarrow> heap \<Rightarrow> ('a \<times> heap) option" where
 | 
| 27 | [code del]: "execute (Heap f) = f" | |
| 26170 | 28 | |
| 37758 | 29 | lemma Heap_cases [case_names succeed fail]: | 
| 30 | fixes f and h | |
| 31 | assumes succeed: "\<And>x h'. execute f h = Some (x, h') \<Longrightarrow> P" | |
| 32 | assumes fail: "execute f h = None \<Longrightarrow> P" | |
| 33 | shows P | |
| 34 | using assms by (cases "execute f h") auto | |
| 35 | ||
| 26170 | 36 | lemma Heap_execute [simp]: | 
| 37 | "Heap (execute f) = f" by (cases f) simp_all | |
| 38 | ||
| 39 | lemma Heap_eqI: | |
| 40 | "(\<And>h. execute f h = execute g h) \<Longrightarrow> f = g" | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39250diff
changeset | 41 | by (cases f, cases g) (auto simp: fun_eq_iff) | 
| 26170 | 42 | |
| 45294 | 43 | ML {* structure Execute_Simps = Named_Thms
 | 
| 44 | ( | |
| 45 |   val name = @{binding execute_simps}
 | |
| 37758 | 46 | val description = "simplification rules for execute" | 
| 47 | ) *} | |
| 48 | ||
| 49 | setup Execute_Simps.setup | |
| 50 | ||
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 51 | lemma execute_Let [execute_simps]: | 
| 37758 | 52 | "execute (let x = t in f x) = (let x = t in execute (f x))" | 
| 53 | by (simp add: Let_def) | |
| 54 | ||
| 55 | ||
| 56 | subsubsection {* Specialised lifters *}
 | |
| 57 | ||
| 58 | definition tap :: "(heap \<Rightarrow> 'a) \<Rightarrow> 'a Heap" where | |
| 59 | [code del]: "tap f = Heap (\<lambda>h. Some (f h, h))" | |
| 60 | ||
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 61 | lemma execute_tap [execute_simps]: | 
| 37758 | 62 | "execute (tap f) h = Some (f h, h)" | 
| 63 | by (simp add: tap_def) | |
| 26170 | 64 | |
| 37709 | 65 | definition heap :: "(heap \<Rightarrow> 'a \<times> heap) \<Rightarrow> 'a Heap" where | 
| 66 | [code del]: "heap f = Heap (Some \<circ> f)" | |
| 26170 | 67 | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 68 | lemma execute_heap [execute_simps]: | 
| 37709 | 69 | "execute (heap f) = Some \<circ> f" | 
| 26170 | 70 | by (simp add: heap_def) | 
| 71 | ||
| 37754 | 72 | definition guard :: "(heap \<Rightarrow> bool) \<Rightarrow> (heap \<Rightarrow> 'a \<times> heap) \<Rightarrow> 'a Heap" where | 
| 73 | [code del]: "guard P f = Heap (\<lambda>h. if P h then Some (f h) else None)" | |
| 74 | ||
| 37758 | 75 | lemma execute_guard [execute_simps]: | 
| 37754 | 76 | "\<not> P h \<Longrightarrow> execute (guard P f) h = None" | 
| 77 | "P h \<Longrightarrow> execute (guard P f) h = Some (f h)" | |
| 78 | by (simp_all add: guard_def) | |
| 79 | ||
| 37758 | 80 | |
| 81 | subsubsection {* Predicate classifying successful computations *}
 | |
| 82 | ||
| 83 | definition success :: "'a Heap \<Rightarrow> heap \<Rightarrow> bool" where | |
| 84 | "success f h \<longleftrightarrow> execute f h \<noteq> None" | |
| 85 | ||
| 86 | lemma successI: | |
| 87 | "execute f h \<noteq> None \<Longrightarrow> success f h" | |
| 88 | by (simp add: success_def) | |
| 89 | ||
| 90 | lemma successE: | |
| 91 | assumes "success f h" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 92 | obtains r h' where "r = fst (the (execute c h))" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 93 | and "h' = snd (the (execute c h))" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 94 | and "execute f h \<noteq> None" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 95 | using assms by (simp add: success_def) | 
| 37758 | 96 | |
| 45294 | 97 | ML {* structure Success_Intros = Named_Thms
 | 
| 98 | ( | |
| 99 |   val name = @{binding success_intros}
 | |
| 37758 | 100 | val description = "introduction rules for success" | 
| 101 | ) *} | |
| 102 | ||
| 103 | setup Success_Intros.setup | |
| 104 | ||
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 105 | lemma success_tapI [success_intros]: | 
| 37758 | 106 | "success (tap f) h" | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 107 | by (rule successI) (simp add: execute_simps) | 
| 37758 | 108 | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 109 | lemma success_heapI [success_intros]: | 
| 37758 | 110 | "success (heap f) h" | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 111 | by (rule successI) (simp add: execute_simps) | 
| 37758 | 112 | |
| 113 | lemma success_guardI [success_intros]: | |
| 114 | "P h \<Longrightarrow> success (guard P f) h" | |
| 115 | by (rule successI) (simp add: execute_guard) | |
| 116 | ||
| 117 | lemma success_LetI [success_intros]: | |
| 118 | "x = t \<Longrightarrow> success (f x) h \<Longrightarrow> success (let x = t in f x) h" | |
| 119 | by (simp add: Let_def) | |
| 120 | ||
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 121 | lemma success_ifI: | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 122 | "(c \<Longrightarrow> success t h) \<Longrightarrow> (\<not> c \<Longrightarrow> success e h) \<Longrightarrow> | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 123 | success (if c then t else e) h" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 124 | by (simp add: success_def) | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 125 | |
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 126 | |
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 127 | subsubsection {* Predicate for a simple relational calculus *}
 | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 128 | |
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 129 | text {*
 | 
| 40671 | 130 |   The @{text effect} predicate states that when a computation @{text c}
 | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 131 |   runs with the heap @{text h} will result in return value @{text r}
 | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 132 |   and a heap @{text "h'"}, i.e.~no exception occurs.
 | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 133 | *} | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 134 | |
| 40671 | 135 | definition effect :: "'a Heap \<Rightarrow> heap \<Rightarrow> heap \<Rightarrow> 'a \<Rightarrow> bool" where | 
| 136 | effect_def: "effect c h h' r \<longleftrightarrow> execute c h = Some (r, h')" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 137 | |
| 40671 | 138 | lemma effectI: | 
| 139 | "execute c h = Some (r, h') \<Longrightarrow> effect c h h' r" | |
| 140 | by (simp add: effect_def) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 141 | |
| 40671 | 142 | lemma effectE: | 
| 143 | assumes "effect c h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 144 | obtains "r = fst (the (execute c h))" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 145 | and "h' = snd (the (execute c h))" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 146 | and "success c h" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 147 | proof (rule that) | 
| 40671 | 148 | from assms have *: "execute c h = Some (r, h')" by (simp add: effect_def) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 149 | then show "success c h" by (simp add: success_def) | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 150 | from * have "fst (the (execute c h)) = r" and "snd (the (execute c h)) = h'" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 151 | by simp_all | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 152 | then show "r = fst (the (execute c h))" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 153 | and "h' = snd (the (execute c h))" by simp_all | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 154 | qed | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 155 | |
| 40671 | 156 | lemma effect_success: | 
| 157 | "effect c h h' r \<Longrightarrow> success c h" | |
| 158 | by (simp add: effect_def success_def) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 159 | |
| 40671 | 160 | lemma success_effectE: | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 161 | assumes "success c h" | 
| 40671 | 162 | obtains r h' where "effect c h h' r" | 
| 163 | using assms by (auto simp add: effect_def success_def) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 164 | |
| 40671 | 165 | lemma effect_deterministic: | 
| 166 | assumes "effect f h h' a" | |
| 167 | and "effect f h h'' b" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 168 | shows "a = b" and "h' = h''" | 
| 40671 | 169 | using assms unfolding effect_def by auto | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 170 | |
| 46029 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 171 | ML {* structure Effect_Intros = Named_Thms
 | 
| 45294 | 172 | ( | 
| 173 |   val name = @{binding effect_intros}
 | |
| 40671 | 174 | val description = "introduction rules for effect" | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 175 | ) *} | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 176 | |
| 46029 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 177 | ML {* structure Effect_Elims = Named_Thms
 | 
| 45294 | 178 | ( | 
| 179 |   val name = @{binding effect_elims}
 | |
| 40671 | 180 | val description = "elimination rules for effect" | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 181 | ) *} | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 182 | |
| 46029 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 183 | setup "Effect_Intros.setup #> Effect_Elims.setup" | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 184 | |
| 40671 | 185 | lemma effect_LetI [effect_intros]: | 
| 186 | assumes "x = t" "effect (f x) h h' r" | |
| 187 | shows "effect (let x = t in f x) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 188 | using assms by simp | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 189 | |
| 40671 | 190 | lemma effect_LetE [effect_elims]: | 
| 191 | assumes "effect (let x = t in f x) h h' r" | |
| 192 | obtains "effect (f t) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 193 | using assms by simp | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 194 | |
| 40671 | 195 | lemma effect_ifI: | 
| 196 | assumes "c \<Longrightarrow> effect t h h' r" | |
| 197 | and "\<not> c \<Longrightarrow> effect e h h' r" | |
| 198 | shows "effect (if c then t else e) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 199 | by (cases c) (simp_all add: assms) | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 200 | |
| 40671 | 201 | lemma effect_ifE: | 
| 202 | assumes "effect (if c then t else e) h h' r" | |
| 203 | obtains "c" "effect t h h' r" | |
| 204 | | "\<not> c" "effect e h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 205 | using assms by (cases c) simp_all | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 206 | |
| 40671 | 207 | lemma effect_tapI [effect_intros]: | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 208 | assumes "h' = h" "r = f h" | 
| 40671 | 209 | shows "effect (tap f) h h' r" | 
| 210 | by (rule effectI) (simp add: assms execute_simps) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 211 | |
| 40671 | 212 | lemma effect_tapE [effect_elims]: | 
| 213 | assumes "effect (tap f) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 214 | obtains "h' = h" and "r = f h" | 
| 40671 | 215 | using assms by (rule effectE) (auto simp add: execute_simps) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 216 | |
| 40671 | 217 | lemma effect_heapI [effect_intros]: | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 218 | assumes "h' = snd (f h)" "r = fst (f h)" | 
| 40671 | 219 | shows "effect (heap f) h h' r" | 
| 220 | by (rule effectI) (simp add: assms execute_simps) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 221 | |
| 40671 | 222 | lemma effect_heapE [effect_elims]: | 
| 223 | assumes "effect (heap f) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 224 | obtains "h' = snd (f h)" and "r = fst (f h)" | 
| 40671 | 225 | using assms by (rule effectE) (simp add: execute_simps) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 226 | |
| 40671 | 227 | lemma effect_guardI [effect_intros]: | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 228 | assumes "P h" "h' = snd (f h)" "r = fst (f h)" | 
| 40671 | 229 | shows "effect (guard P f) h h' r" | 
| 230 | by (rule effectI) (simp add: assms execute_simps) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 231 | |
| 40671 | 232 | lemma effect_guardE [effect_elims]: | 
| 233 | assumes "effect (guard P f) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 234 | obtains "h' = snd (f h)" "r = fst (f h)" "P h" | 
| 40671 | 235 | using assms by (rule effectE) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 236 | (auto simp add: execute_simps elim!: successE, cases "P h", auto simp add: execute_simps) | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 237 | |
| 37758 | 238 | |
| 239 | subsubsection {* Monad combinators *}
 | |
| 26170 | 240 | |
| 37709 | 241 | definition return :: "'a \<Rightarrow> 'a Heap" where | 
| 26170 | 242 | [code del]: "return x = heap (Pair x)" | 
| 243 | ||
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 244 | lemma execute_return [execute_simps]: | 
| 37709 | 245 | "execute (return x) = Some \<circ> Pair x" | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 246 | by (simp add: return_def execute_simps) | 
| 26170 | 247 | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 248 | lemma success_returnI [success_intros]: | 
| 37758 | 249 | "success (return x) h" | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 250 | by (rule successI) (simp add: execute_simps) | 
| 37758 | 251 | |
| 40671 | 252 | lemma effect_returnI [effect_intros]: | 
| 253 | "h = h' \<Longrightarrow> effect (return x) h h' x" | |
| 254 | by (rule effectI) (simp add: execute_simps) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 255 | |
| 40671 | 256 | lemma effect_returnE [effect_elims]: | 
| 257 | assumes "effect (return x) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 258 | obtains "r = x" "h' = h" | 
| 40671 | 259 | using assms by (rule effectE) (simp add: execute_simps) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 260 | |
| 37709 | 261 | definition raise :: "string \<Rightarrow> 'a Heap" where -- {* the string is just decoration *}
 | 
| 262 | [code del]: "raise s = Heap (\<lambda>_. None)" | |
| 26170 | 263 | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 264 | lemma execute_raise [execute_simps]: | 
| 37709 | 265 | "execute (raise s) = (\<lambda>_. None)" | 
| 26170 | 266 | by (simp add: raise_def) | 
| 267 | ||
| 40671 | 268 | lemma effect_raiseE [effect_elims]: | 
| 269 | assumes "effect (raise x) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 270 | obtains "False" | 
| 40671 | 271 | using assms by (rule effectE) (simp add: success_def execute_simps) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 272 | |
| 37792 | 273 | definition bind :: "'a Heap \<Rightarrow> ('a \<Rightarrow> 'b Heap) \<Rightarrow> 'b Heap" where
 | 
| 274 | [code del]: "bind f g = Heap (\<lambda>h. case execute f h of | |
| 37709 | 275 | Some (x, h') \<Rightarrow> execute (g x) h' | 
| 276 | | None \<Rightarrow> None)" | |
| 277 | ||
| 37792 | 278 | setup {*
 | 
| 279 | Adhoc_Overloading.add_variant | |
| 37816 | 280 |     @{const_name Monad_Syntax.bind} @{const_name Heap_Monad.bind}
 | 
| 37792 | 281 | *} | 
| 282 | ||
| 37758 | 283 | lemma execute_bind [execute_simps]: | 
| 37709 | 284 | "execute f h = Some (x, h') \<Longrightarrow> execute (f \<guillemotright>= g) h = execute (g x) h'" | 
| 285 | "execute f h = None \<Longrightarrow> execute (f \<guillemotright>= g) h = None" | |
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 286 | by (simp_all add: bind_def) | 
| 37709 | 287 | |
| 38409 | 288 | lemma execute_bind_case: | 
| 289 | "execute (f \<guillemotright>= g) h = (case (execute f h) of | |
| 290 | Some (x, h') \<Rightarrow> execute (g x) h' | None \<Rightarrow> None)" | |
| 291 | by (simp add: bind_def) | |
| 292 | ||
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 293 | lemma execute_bind_success: | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 294 | "success f h \<Longrightarrow> execute (f \<guillemotright>= g) h = execute (g (fst (the (execute f h)))) (snd (the (execute f h)))" | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 295 | by (cases f h rule: Heap_cases) (auto elim!: successE simp add: bind_def) | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 296 | |
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 297 | lemma success_bind_executeI: | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 298 | "execute f h = Some (x, h') \<Longrightarrow> success (g x) h' \<Longrightarrow> success (f \<guillemotright>= g) h" | 
| 37758 | 299 | by (auto intro!: successI elim!: successE simp add: bind_def) | 
| 300 | ||
| 40671 | 301 | lemma success_bind_effectI [success_intros]: | 
| 302 | "effect f h h' x \<Longrightarrow> success (g x) h' \<Longrightarrow> success (f \<guillemotright>= g) h" | |
| 303 | by (auto simp add: effect_def success_def bind_def) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 304 | |
| 40671 | 305 | lemma effect_bindI [effect_intros]: | 
| 306 | assumes "effect f h h' r" "effect (g r) h' h'' r'" | |
| 307 | shows "effect (f \<guillemotright>= g) h h'' r'" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 308 | using assms | 
| 40671 | 309 | apply (auto intro!: effectI elim!: effectE successE) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 310 | apply (subst execute_bind, simp_all) | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 311 | done | 
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 312 | |
| 40671 | 313 | lemma effect_bindE [effect_elims]: | 
| 314 | assumes "effect (f \<guillemotright>= g) h h'' r'" | |
| 315 | obtains h' r where "effect f h h' r" "effect (g r) h' h'' r'" | |
| 316 | using assms by (auto simp add: effect_def bind_def split: option.split_asm) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 317 | |
| 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 318 | lemma execute_bind_eq_SomeI: | 
| 37878 | 319 | assumes "execute f h = Some (x, h')" | 
| 320 | and "execute (g x) h' = Some (y, h'')" | |
| 321 | shows "execute (f \<guillemotright>= g) h = Some (y, h'')" | |
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 322 | using assms by (simp add: bind_def) | 
| 37754 | 323 | |
| 37709 | 324 | lemma return_bind [simp]: "return x \<guillemotright>= f = f x" | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 325 | by (rule Heap_eqI) (simp add: execute_bind execute_simps) | 
| 37709 | 326 | |
| 327 | lemma bind_return [simp]: "f \<guillemotright>= return = f" | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 328 | by (rule Heap_eqI) (simp add: bind_def execute_simps split: option.splits) | 
| 37709 | 329 | |
| 37828 | 330 | lemma bind_bind [simp]: "(f \<guillemotright>= g) \<guillemotright>= k = (f :: 'a Heap) \<guillemotright>= (\<lambda>x. g x \<guillemotright>= k)" | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 331 | by (rule Heap_eqI) (simp add: bind_def execute_simps split: option.splits) | 
| 37709 | 332 | |
| 333 | lemma raise_bind [simp]: "raise e \<guillemotright>= f = raise e" | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 334 | by (rule Heap_eqI) (simp add: execute_simps) | 
| 37709 | 335 | |
| 26170 | 336 | |
| 37758 | 337 | subsection {* Generic combinators *}
 | 
| 26170 | 338 | |
| 37758 | 339 | subsubsection {* Assertions *}
 | 
| 26170 | 340 | |
| 37709 | 341 | definition assert :: "('a \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'a Heap" where
 | 
| 342 | "assert P x = (if P x then return x else raise ''assert'')" | |
| 28742 | 343 | |
| 37758 | 344 | lemma execute_assert [execute_simps]: | 
| 37754 | 345 | "P x \<Longrightarrow> execute (assert P x) h = Some (x, h)" | 
| 346 | "\<not> P x \<Longrightarrow> execute (assert P x) h = None" | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 347 | by (simp_all add: assert_def execute_simps) | 
| 37754 | 348 | |
| 37758 | 349 | lemma success_assertI [success_intros]: | 
| 350 | "P x \<Longrightarrow> success (assert P x) h" | |
| 351 | by (rule successI) (simp add: execute_assert) | |
| 352 | ||
| 40671 | 353 | lemma effect_assertI [effect_intros]: | 
| 354 | "P x \<Longrightarrow> h' = h \<Longrightarrow> r = x \<Longrightarrow> effect (assert P x) h h' r" | |
| 355 | by (rule effectI) (simp add: execute_assert) | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 356 | |
| 40671 | 357 | lemma effect_assertE [effect_elims]: | 
| 358 | assumes "effect (assert P x) h h' r" | |
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 359 | obtains "P x" "r = x" "h' = h" | 
| 40671 | 360 | using assms by (rule effectE) (cases "P x", simp_all add: execute_assert success_def) | 
| 37771 
1bec64044b5e
spelt out relational framework in a consistent way
 haftmann parents: 
37758diff
changeset | 361 | |
| 28742 | 362 | lemma assert_cong [fundef_cong]: | 
| 363 | assumes "P = P'" | |
| 364 | assumes "\<And>x. P' x \<Longrightarrow> f x = f' x" | |
| 365 | shows "(assert P x >>= f) = (assert P' x >>= f')" | |
| 37754 | 366 | by (rule Heap_eqI) (insert assms, simp add: assert_def) | 
| 28742 | 367 | |
| 37758 | 368 | |
| 369 | subsubsection {* Plain lifting *}
 | |
| 370 | ||
| 37754 | 371 | definition lift :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b Heap" where
 | 
| 372 | "lift f = return o f" | |
| 37709 | 373 | |
| 37754 | 374 | lemma lift_collapse [simp]: | 
| 375 | "lift f x = return (f x)" | |
| 376 | by (simp add: lift_def) | |
| 37709 | 377 | |
| 37754 | 378 | lemma bind_lift: | 
| 379 | "(f \<guillemotright>= lift g) = (f \<guillemotright>= (\<lambda>x. return (g x)))" | |
| 380 | by (simp add: lift_def comp_def) | |
| 37709 | 381 | |
| 37758 | 382 | |
| 383 | subsubsection {* Iteration -- warning: this is rarely useful! *}
 | |
| 384 | ||
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 385 | primrec fold_map :: "('a \<Rightarrow> 'b Heap) \<Rightarrow> 'a list \<Rightarrow> 'b list Heap" where
 | 
| 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 386 | "fold_map f [] = return []" | 
| 37792 | 387 | | "fold_map f (x # xs) = do {
 | 
| 37709 | 388 | y \<leftarrow> f x; | 
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 389 | ys \<leftarrow> fold_map f xs; | 
| 37709 | 390 | return (y # ys) | 
| 37792 | 391 | }" | 
| 37709 | 392 | |
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 393 | lemma fold_map_append: | 
| 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 394 | "fold_map f (xs @ ys) = fold_map f xs \<guillemotright>= (\<lambda>xs. fold_map f ys \<guillemotright>= (\<lambda>ys. return (xs @ ys)))" | 
| 37754 | 395 | by (induct xs) simp_all | 
| 396 | ||
| 37758 | 397 | lemma execute_fold_map_unchanged_heap [execute_simps]: | 
| 37754 | 398 | assumes "\<And>x. x \<in> set xs \<Longrightarrow> \<exists>y. execute (f x) h = Some (y, h)" | 
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 399 | shows "execute (fold_map f xs) h = | 
| 37754 | 400 | Some (List.map (\<lambda>x. fst (the (execute (f x) h))) xs, h)" | 
| 401 | using assms proof (induct xs) | |
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 402 | case Nil show ?case by (simp add: execute_simps) | 
| 37754 | 403 | next | 
| 404 | case (Cons x xs) | |
| 405 | from Cons.prems obtain y | |
| 406 | where y: "execute (f x) h = Some (y, h)" by auto | |
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 407 | moreover from Cons.prems Cons.hyps have "execute (fold_map f xs) h = | 
| 37754 | 408 | Some (map (\<lambda>x. fst (the (execute (f x) h))) xs, h)" by auto | 
| 37787 
30dc3abf4a58
theorem collections do not contain default rules any longer
 haftmann parents: 
37772diff
changeset | 409 | ultimately show ?case by (simp, simp only: execute_bind(1), simp add: execute_simps) | 
| 37754 | 410 | qed | 
| 411 | ||
| 40267 | 412 | |
| 413 | subsection {* Partial function definition setup *}
 | |
| 414 | ||
| 415 | definition Heap_ord :: "'a Heap \<Rightarrow> 'a Heap \<Rightarrow> bool" where | |
| 416 | "Heap_ord = img_ord execute (fun_ord option_ord)" | |
| 417 | ||
| 44174 
d1d79f0e1ea6
make more HOL theories work with separate set type
 huffman parents: 
43324diff
changeset | 418 | definition Heap_lub :: "'a Heap set \<Rightarrow> 'a Heap" where | 
| 40267 | 419 | "Heap_lub = img_lub execute Heap (fun_lub (flat_lub None))" | 
| 420 | ||
| 421 | interpretation heap!: partial_function_definitions Heap_ord Heap_lub | |
| 422 | proof - | |
| 423 | have "partial_function_definitions (fun_ord option_ord) (fun_lub (flat_lub None))" | |
| 424 | by (rule partial_function_lift) (rule flat_interpretation) | |
| 425 | then have "partial_function_definitions (img_ord execute (fun_ord option_ord)) | |
| 426 | (img_lub execute Heap (fun_lub (flat_lub None)))" | |
| 427 | by (rule partial_function_image) (auto intro: Heap_eqI) | |
| 428 | then show "partial_function_definitions Heap_ord Heap_lub" | |
| 429 | by (simp only: Heap_ord_def Heap_lub_def) | |
| 430 | qed | |
| 431 | ||
| 42949 
618adb3584e5
separate initializations for different modes of partial_function -- generation of induction rules will be non-uniform
 krauss parents: 
41413diff
changeset | 432 | declaration {* Partial_Function.init "heap" @{term heap.fixp_fun}
 | 
| 43080 | 433 |   @{term heap.mono_body} @{thm heap.fixp_rule_uc} NONE *}
 | 
| 42949 
618adb3584e5
separate initializations for different modes of partial_function -- generation of induction rules will be non-uniform
 krauss parents: 
41413diff
changeset | 434 | |
| 
618adb3584e5
separate initializations for different modes of partial_function -- generation of induction rules will be non-uniform
 krauss parents: 
41413diff
changeset | 435 | |
| 40267 | 436 | abbreviation "mono_Heap \<equiv> monotone (fun_ord Heap_ord) Heap_ord" | 
| 437 | ||
| 438 | lemma Heap_ordI: | |
| 439 | assumes "\<And>h. execute x h = None \<or> execute x h = execute y h" | |
| 440 | shows "Heap_ord x y" | |
| 441 | using assms unfolding Heap_ord_def img_ord_def fun_ord_def flat_ord_def | |
| 442 | by blast | |
| 443 | ||
| 444 | lemma Heap_ordE: | |
| 445 | assumes "Heap_ord x y" | |
| 446 | obtains "execute x h = None" | "execute x h = execute y h" | |
| 447 | using assms unfolding Heap_ord_def img_ord_def fun_ord_def flat_ord_def | |
| 448 | by atomize_elim blast | |
| 449 | ||
| 46029 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 450 | lemma bind_mono [partial_function_mono]: | 
| 40267 | 451 | assumes mf: "mono_Heap B" and mg: "\<And>y. mono_Heap (\<lambda>f. C y f)" | 
| 452 | shows "mono_Heap (\<lambda>f. B f \<guillemotright>= (\<lambda>y. C y f))" | |
| 453 | proof (rule monotoneI) | |
| 454 | fix f g :: "'a \<Rightarrow> 'b Heap" assume fg: "fun_ord Heap_ord f g" | |
| 455 | from mf | |
| 456 | have 1: "Heap_ord (B f) (B g)" by (rule monotoneD) (rule fg) | |
| 457 | from mg | |
| 458 | have 2: "\<And>y'. Heap_ord (C y' f) (C y' g)" by (rule monotoneD) (rule fg) | |
| 459 | ||
| 460 | have "Heap_ord (B f \<guillemotright>= (\<lambda>y. C y f)) (B g \<guillemotright>= (\<lambda>y. C y f))" | |
| 461 | (is "Heap_ord ?L ?R") | |
| 462 | proof (rule Heap_ordI) | |
| 463 | fix h | |
| 464 | from 1 show "execute ?L h = None \<or> execute ?L h = execute ?R h" | |
| 465 | by (rule Heap_ordE[where h = h]) (auto simp: execute_bind_case) | |
| 466 | qed | |
| 467 | also | |
| 468 | have "Heap_ord (B g \<guillemotright>= (\<lambda>y'. C y' f)) (B g \<guillemotright>= (\<lambda>y'. C y' g))" | |
| 469 | (is "Heap_ord ?L ?R") | |
| 470 | proof (rule Heap_ordI) | |
| 471 | fix h | |
| 472 | show "execute ?L h = None \<or> execute ?L h = execute ?R h" | |
| 473 | proof (cases "execute (B g) h") | |
| 474 | case None | |
| 475 | then have "execute ?L h = None" by (auto simp: execute_bind_case) | |
| 476 | thus ?thesis .. | |
| 477 | next | |
| 478 | case Some | |
| 479 | then obtain r h' where "execute (B g) h = Some (r, h')" | |
| 480 | by (metis surjective_pairing) | |
| 481 | then have "execute ?L h = execute (C r f) h'" | |
| 482 | "execute ?R h = execute (C r g) h'" | |
| 483 | by (auto simp: execute_bind_case) | |
| 484 | with 2[of r] show ?thesis by (auto elim: Heap_ordE) | |
| 485 | qed | |
| 486 | qed | |
| 487 | finally (heap.leq_trans) | |
| 488 | show "Heap_ord (B f \<guillemotright>= (\<lambda>y. C y f)) (B g \<guillemotright>= (\<lambda>y'. C y' g))" . | |
| 489 | qed | |
| 490 | ||
| 491 | ||
| 26182 | 492 | subsection {* Code generator setup *}
 | 
| 493 | ||
| 494 | subsubsection {* Logical intermediate layer *}
 | |
| 495 | ||
| 39250 
548a3e5521ab
changing String.literal to a type instead of a datatype
 bulwahn parents: 
39198diff
changeset | 496 | definition raise' :: "String.literal \<Rightarrow> 'a Heap" where | 
| 
548a3e5521ab
changing String.literal to a type instead of a datatype
 bulwahn parents: 
39198diff
changeset | 497 | [code del]: "raise' s = raise (explode s)" | 
| 
548a3e5521ab
changing String.literal to a type instead of a datatype
 bulwahn parents: 
39198diff
changeset | 498 | |
| 46029 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 499 | lemma [code_abbrev]: "raise' (STR s) = raise s" | 
| 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 500 | unfolding raise'_def by (simp add: STR_inverse) | 
| 26182 | 501 | |
| 46029 
4a19e3d147c3
attribute code_abbrev superseedes code_unfold_post; tuned names and spacing
 haftmann parents: 
45294diff
changeset | 502 | lemma raise_raise': (* FIXME delete candidate *) | 
| 37709 | 503 | "raise s = raise' (STR s)" | 
| 39250 
548a3e5521ab
changing String.literal to a type instead of a datatype
 bulwahn parents: 
39198diff
changeset | 504 | unfolding raise'_def by (simp add: STR_inverse) | 
| 26182 | 505 | |
| 37709 | 506 | code_datatype raise' -- {* avoid @{const "Heap"} formally *}
 | 
| 26182 | 507 | |
| 508 | ||
| 27707 | 509 | subsubsection {* SML and OCaml *}
 | 
| 26182 | 510 | |
| 26752 | 511 | code_type Heap (SML "unit/ ->/ _") | 
| 37828 | 512 | code_const bind (SML "!(fn/ f'_/ =>/ fn/ ()/ =>/ f'_/ (_/ ())/ ())") | 
| 27707 | 513 | code_const return (SML "!(fn/ ()/ =>/ _)") | 
| 37709 | 514 | code_const Heap_Monad.raise' (SML "!(raise/ Fail/ _)") | 
| 26182 | 515 | |
| 37754 | 516 | code_type Heap (OCaml "unit/ ->/ _") | 
| 37828 | 517 | code_const bind (OCaml "!(fun/ f'_/ ()/ ->/ f'_/ (_/ ())/ ())") | 
| 27707 | 518 | code_const return (OCaml "!(fun/ ()/ ->/ _)") | 
| 37828 | 519 | code_const Heap_Monad.raise' (OCaml "failwith") | 
| 27707 | 520 | |
| 37838 | 521 | |
| 522 | subsubsection {* Haskell *}
 | |
| 523 | ||
| 524 | text {* Adaption layer *}
 | |
| 525 | ||
| 526 | code_include Haskell "Heap" | |
| 527 | {*import qualified Control.Monad;
 | |
| 528 | import qualified Control.Monad.ST; | |
| 529 | import qualified Data.STRef; | |
| 530 | import qualified Data.Array.ST; | |
| 531 | ||
| 37964 | 532 | import Natural; | 
| 533 | ||
| 37838 | 534 | type RealWorld = Control.Monad.ST.RealWorld; | 
| 535 | type ST s a = Control.Monad.ST.ST s a; | |
| 536 | type STRef s a = Data.STRef.STRef s a; | |
| 37964 | 537 | type STArray s a = Data.Array.ST.STArray s Natural a; | 
| 37838 | 538 | |
| 539 | newSTRef = Data.STRef.newSTRef; | |
| 540 | readSTRef = Data.STRef.readSTRef; | |
| 541 | writeSTRef = Data.STRef.writeSTRef; | |
| 542 | ||
| 37964 | 543 | newArray :: Natural -> a -> ST s (STArray s a); | 
| 37838 | 544 | newArray k = Data.Array.ST.newArray (0, k); | 
| 545 | ||
| 546 | newListArray :: [a] -> ST s (STArray s a); | |
| 37964 | 547 | newListArray xs = Data.Array.ST.newListArray (0, (fromInteger . toInteger . length) xs) xs; | 
| 37838 | 548 | |
| 37964 | 549 | newFunArray :: Natural -> (Natural -> a) -> ST s (STArray s a); | 
| 37838 | 550 | newFunArray k f = Data.Array.ST.newListArray (0, k) (map f [0..k-1]); | 
| 551 | ||
| 37964 | 552 | lengthArray :: STArray s a -> ST s Natural; | 
| 37838 | 553 | lengthArray a = Control.Monad.liftM snd (Data.Array.ST.getBounds a); | 
| 554 | ||
| 37964 | 555 | readArray :: STArray s a -> Natural -> ST s a; | 
| 37838 | 556 | readArray = Data.Array.ST.readArray; | 
| 557 | ||
| 37964 | 558 | writeArray :: STArray s a -> Natural -> a -> ST s (); | 
| 37838 | 559 | writeArray = Data.Array.ST.writeArray;*} | 
| 560 | ||
| 561 | code_reserved Haskell Heap | |
| 562 | ||
| 563 | text {* Monad *}
 | |
| 564 | ||
| 565 | code_type Heap (Haskell "Heap.ST/ Heap.RealWorld/ _") | |
| 566 | code_monad bind Haskell | |
| 567 | code_const return (Haskell "return") | |
| 568 | code_const Heap_Monad.raise' (Haskell "error") | |
| 569 | ||
| 570 | ||
| 571 | subsubsection {* Scala *}
 | |
| 572 | ||
| 37842 | 573 | code_include Scala "Heap" | 
| 38968 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 574 | {*object Heap {
 | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 575 | def bind[A, B](f: Unit => A, g: A => Unit => B): Unit => B = (_: Unit) => g (f ()) () | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 576 | } | 
| 37842 | 577 | |
| 578 | class Ref[A](x: A) {
 | |
| 579 | var value = x | |
| 580 | } | |
| 581 | ||
| 582 | object Ref {
 | |
| 38771 | 583 | def apply[A](x: A): Ref[A] = | 
| 584 | new Ref[A](x) | |
| 585 | def lookup[A](r: Ref[A]): A = | |
| 586 | r.value | |
| 587 | def update[A](r: Ref[A], x: A): Unit = | |
| 588 |     { r.value = x }
 | |
| 37842 | 589 | } | 
| 590 | ||
| 37964 | 591 | object Array {
 | 
| 38968 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 592 | import collection.mutable.ArraySeq | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 593 | def alloc[A](n: Natural)(x: A): ArraySeq[A] = | 
| 38771 | 594 | ArraySeq.fill(n.as_Int)(x) | 
| 38968 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 595 | def make[A](n: Natural)(f: Natural => A): ArraySeq[A] = | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 596 | ArraySeq.tabulate(n.as_Int)((k: Int) => f(Natural(k))) | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 597 | def len[A](a: ArraySeq[A]): Natural = | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 598 | Natural(a.length) | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 599 | def nth[A](a: ArraySeq[A], n: Natural): A = | 
| 38771 | 600 | a(n.as_Int) | 
| 38968 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 601 | def upd[A](a: ArraySeq[A], n: Natural, x: A): Unit = | 
| 38771 | 602 | a.update(n.as_Int, x) | 
| 603 | def freeze[A](a: ArraySeq[A]): List[A] = | |
| 604 | a.toList | |
| 38968 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 605 | } | 
| 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 606 | *} | 
| 37842 | 607 | |
| 38968 
e55deaa22fff
do not print object frame around Scala includes -- this is in the responsibility of the user
 haftmann parents: 
38773diff
changeset | 608 | code_reserved Scala Heap Ref Array | 
| 37838 | 609 | |
| 610 | code_type Heap (Scala "Unit/ =>/ _") | |
| 38771 | 611 | code_const bind (Scala "Heap.bind") | 
| 37842 | 612 | code_const return (Scala "('_: Unit)/ =>/ _")
 | 
| 37845 
b70d7a347964
first roughly working version of Imperative HOL for Scala
 haftmann parents: 
37842diff
changeset | 613 | code_const Heap_Monad.raise' (Scala "!error((_))") | 
| 37838 | 614 | |
| 615 | ||
| 616 | subsubsection {* Target variants with less units *}
 | |
| 617 | ||
| 31871 | 618 | setup {*
 | 
| 619 | ||
| 620 | let | |
| 27707 | 621 | |
| 31871 | 622 | open Code_Thingol; | 
| 623 | ||
| 624 | fun imp_program naming = | |
| 625 | let | |
| 626 | fun is_const c = case lookup_const naming c | |
| 627 | of SOME c' => (fn c'' => c' = c'') | |
| 628 | | NONE => K false; | |
| 37756 
59caa6180fff
avoid slightly odd "M" suffix; rename mapM to fold_map (fold_map_abort would be more correct, though)
 haftmann parents: 
37754diff
changeset | 629 |     val is_bind = is_const @{const_name bind};
 | 
| 31871 | 630 |     val is_return = is_const @{const_name return};
 | 
| 31893 | 631 | val dummy_name = ""; | 
| 632 | val dummy_case_term = IVar NONE; | |
| 31871 | 633 | (*assumption: dummy values are not relevant for serialization*) | 
| 38057 | 634 |     val (unitt, unitT) = case lookup_const naming @{const_name Unity}
 | 
| 44794 
d3fdd0a24e15
adapting Imperative HOL serializer to changes of the iterm datatype in the code generator
 bulwahn parents: 
44174diff
changeset | 635 | of SOME unit' => | 
| 
d3fdd0a24e15
adapting Imperative HOL serializer to changes of the iterm datatype in the code generator
 bulwahn parents: 
44174diff
changeset | 636 |         let val unitT = the (lookup_tyco naming @{type_name unit}) `%% []
 | 
| 
d3fdd0a24e15
adapting Imperative HOL serializer to changes of the iterm datatype in the code generator
 bulwahn parents: 
44174diff
changeset | 637 | in (IConst (unit', ((([], []), ([], unitT)), false)), unitT) end | 
| 31871 | 638 |       | NONE => error ("Must include " ^ @{const_name Unity} ^ " in generated constants.");
 | 
| 639 | fun dest_abs ((v, ty) `|=> t, _) = ((v, ty), t) | |
| 640 | | dest_abs (t, ty) = | |
| 641 | let | |
| 642 | val vs = fold_varnames cons t []; | |
| 43324 
2b47822868e4
discontinued Name.variant to emphasize that this is old-style / indirect;
 wenzelm parents: 
43080diff
changeset | 643 | val v = singleton (Name.variant_list vs) "x"; | 
| 31871 | 644 | val ty' = (hd o fst o unfold_fun) ty; | 
| 31893 | 645 | in ((SOME v, ty'), t `$ IVar (SOME v)) end; | 
| 31871 | 646 | fun force (t as IConst (c, _) `$ t') = if is_return c | 
| 647 | then t' else t `$ unitt | |
| 648 | | force t = t `$ unitt; | |
| 38385 | 649 | fun tr_bind'' [(t1, _), (t2, ty2)] = | 
| 31871 | 650 | let | 
| 651 | val ((v, ty), t) = dest_abs (t2, ty2); | |
| 38385 | 652 | in ICase (((force t1, ty), [(IVar v, tr_bind' t)]), dummy_case_term) end | 
| 653 | and tr_bind' t = case unfold_app t | |
| 44794 
d3fdd0a24e15
adapting Imperative HOL serializer to changes of the iterm datatype in the code generator
 bulwahn parents: 
44174diff
changeset | 654 | of (IConst (c, ((_, (ty1 :: ty2 :: _, _)), _)), [x1, x2]) => if is_bind c | 
| 38386 | 655 | then tr_bind'' [(x1, ty1), (x2, ty2)] | 
| 656 | else force t | |
| 657 | | _ => force t; | |
| 38057 | 658 | fun imp_monad_bind'' ts = (SOME dummy_name, unitT) `|=> ICase (((IVar (SOME dummy_name), unitT), | 
| 38385 | 659 | [(unitt, tr_bind'' ts)]), dummy_case_term) | 
| 44794 
d3fdd0a24e15
adapting Imperative HOL serializer to changes of the iterm datatype in the code generator
 bulwahn parents: 
44174diff
changeset | 660 | fun imp_monad_bind' (const as (c, ((_, (tys, _)), _))) ts = if is_bind c then case (ts, tys) | 
| 31871 | 661 | of ([t1, t2], ty1 :: ty2 :: _) => imp_monad_bind'' [(t1, ty1), (t2, ty2)] | 
| 662 | | ([t1, t2, t3], ty1 :: ty2 :: _) => imp_monad_bind'' [(t1, ty1), (t2, ty2)] `$ t3 | |
| 663 | | (ts, _) => imp_monad_bind (eta_expand 2 (const, ts)) | |
| 664 | else IConst const `$$ map imp_monad_bind ts | |
| 665 | and imp_monad_bind (IConst const) = imp_monad_bind' const [] | |
| 666 | | imp_monad_bind (t as IVar _) = t | |
| 667 | | imp_monad_bind (t as _ `$ _) = (case unfold_app t | |
| 668 | of (IConst const, ts) => imp_monad_bind' const ts | |
| 669 | | (t, ts) => imp_monad_bind t `$$ map imp_monad_bind ts) | |
| 670 | | imp_monad_bind (v_ty `|=> t) = v_ty `|=> imp_monad_bind t | |
| 671 | | imp_monad_bind (ICase (((t, ty), pats), t0)) = ICase | |
| 672 | (((imp_monad_bind t, ty), | |
| 673 | (map o pairself) imp_monad_bind pats), | |
| 674 | imp_monad_bind t0); | |
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28562diff
changeset | 675 | |
| 39021 | 676 | in (Graph.map o K o map_terms_stmt) imp_monad_bind end; | 
| 27707 | 677 | |
| 678 | in | |
| 679 | ||
| 31871 | 680 | Code_Target.extend_target ("SML_imp", ("SML", imp_program))
 | 
| 681 | #> Code_Target.extend_target ("OCaml_imp", ("OCaml", imp_program))
 | |
| 37838 | 682 | #> Code_Target.extend_target ("Scala_imp", ("Scala", imp_program))
 | 
| 27707 | 683 | |
| 684 | end | |
| 31871 | 685 | |
| 27707 | 686 | *} | 
| 687 | ||
| 37758 | 688 | hide_const (open) Heap heap guard raise' fold_map | 
| 37724 | 689 | |
| 26170 | 690 | end |