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