src/HOL/Imperative_HOL/Heap_Monad.thy
author haftmann
Fri, 09 Jul 2010 09:48:53 +0200
changeset 37754 683d1e1bc234
parent 37724 6607ccf77946
child 37756 59caa6180fff
permissions -rw-r--r--
guard combinator
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Library/Heap_Monad.thy
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     2
    Author:     John Matthews, Galois Connections; Alexander Krauss, Lukas Bulwahn & Florian Haftmann, TU Muenchen
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     3
*)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     4
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     5
header {* A monad with a polymorphic heap *}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     6
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     7
theory Heap_Monad
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     8
imports Heap
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
     9
begin
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    10
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    11
subsection {* The monad *}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    12
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    13
subsubsection {* Monad combinators *}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    14
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    15
text {* Monadic heap actions either produce values
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    16
  and transform the heap, or fail *}
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    17
datatype 'a Heap = Heap "heap \<Rightarrow> ('a \<times> heap) option"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    18
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    19
primrec execute :: "'a Heap \<Rightarrow> heap \<Rightarrow> ('a \<times> heap) option" where
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    20
  [code del]: "execute (Heap f) = f"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    21
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    22
lemma Heap_execute [simp]:
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    23
  "Heap (execute f) = f" by (cases f) simp_all
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    24
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    25
lemma Heap_eqI:
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    26
  "(\<And>h. execute f h = execute g h) \<Longrightarrow> f = g"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    27
    by (cases f, cases g) (auto simp: expand_fun_eq)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    28
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    29
lemma Heap_eqI':
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    30
  "(\<And>h. (\<lambda>x. execute (f x) h) = (\<lambda>y. execute (g y) h)) \<Longrightarrow> f = g"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    31
    by (auto simp: expand_fun_eq intro: Heap_eqI)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    32
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    33
definition heap :: "(heap \<Rightarrow> 'a \<times> heap) \<Rightarrow> 'a Heap" where
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    34
  [code del]: "heap f = Heap (Some \<circ> f)"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    35
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    36
lemma execute_heap [simp]:
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    37
  "execute (heap f) = Some \<circ> f"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    38
  by (simp add: heap_def)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    39
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    40
definition guard :: "(heap \<Rightarrow> bool) \<Rightarrow> (heap \<Rightarrow> 'a \<times> heap) \<Rightarrow> 'a Heap" where
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    41
  [code del]: "guard P f = Heap (\<lambda>h. if P h then Some (f h) else None)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    42
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    43
lemma execute_guard [simp]:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    44
  "\<not> P h \<Longrightarrow> execute (guard P f) h = None"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    45
  "P h \<Longrightarrow> execute (guard P f) h = Some (f h)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    46
  by (simp_all add: guard_def)
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    47
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    48
lemma heap_cases [case_names succeed fail]:
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    49
  fixes f and h
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    50
  assumes succeed: "\<And>x h'. execute f h = Some (x, h') \<Longrightarrow> P"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    51
  assumes fail: "execute f h = None \<Longrightarrow> P"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    52
  shows P
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    53
  using assms by (cases "execute f h") auto
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    54
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    55
definition return :: "'a \<Rightarrow> 'a Heap" where
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    56
  [code del]: "return x = heap (Pair x)"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    57
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    58
lemma execute_return [simp]:
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    59
  "execute (return x) = Some \<circ> Pair x"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    60
  by (simp add: return_def)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    61
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    62
definition raise :: "string \<Rightarrow> 'a Heap" where -- {* the string is just decoration *}
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    63
  [code del]: "raise s = Heap (\<lambda>_. None)"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    64
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    65
lemma execute_raise [simp]:
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    66
  "execute (raise s) = (\<lambda>_. None)"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    67
  by (simp add: raise_def)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
    68
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    69
definition bindM :: "'a Heap \<Rightarrow> ('a \<Rightarrow> 'b Heap) \<Rightarrow> 'b Heap" (infixl ">>=" 54) where (*FIXME just bind*)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    70
  [code del]: "f >>= g = Heap (\<lambda>h. case execute f h of
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    71
                  Some (x, h') \<Rightarrow> execute (g x) h'
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    72
                | None \<Rightarrow> None)"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    73
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    74
notation bindM (infixl "\<guillemotright>=" 54)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    75
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    76
lemma execute_bind [simp]:
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    77
  "execute f h = Some (x, h') \<Longrightarrow> execute (f \<guillemotright>= g) h = execute (g x) h'"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    78
  "execute f h = None \<Longrightarrow> execute (f \<guillemotright>= g) h = None"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    79
  by (simp_all add: bindM_def)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    80
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    81
lemma execute_bind_heap [simp]:
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    82
  "execute (heap f \<guillemotright>= g) h = execute (g (fst (f h))) (snd (f h))"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    83
  by (simp add: bindM_def split_def)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    84
  
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    85
lemma execute_eq_SomeI:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    86
  assumes "Heap_Monad.execute f h = Some (x, h')"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    87
    and "Heap_Monad.execute (g x) h' = Some (y, h'')"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    88
  shows "Heap_Monad.execute (f \<guillemotright>= g) h = Some (y, h'')"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    89
  using assms by (simp add: bindM_def)
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
    90
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    91
lemma return_bind [simp]: "return x \<guillemotright>= f = f x"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    92
  by (rule Heap_eqI) simp
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    93
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    94
lemma bind_return [simp]: "f \<guillemotright>= return = f"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    95
  by (rule Heap_eqI) (simp add: bindM_def split: option.splits)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    96
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    97
lemma bind_bind [simp]: "(f \<guillemotright>= g) \<guillemotright>= k = f \<guillemotright>= (\<lambda>x. g x \<guillemotright>= k)"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    98
  by (rule Heap_eqI) (simp add: bindM_def split: option.splits)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
    99
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   100
lemma raise_bind [simp]: "raise e \<guillemotright>= f = raise e"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   101
  by (rule Heap_eqI) simp
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   102
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   103
abbreviation chain :: "'a Heap \<Rightarrow> 'b Heap \<Rightarrow> 'b Heap"  (infixl ">>" 54) where
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   104
  "f >> g \<equiv> f >>= (\<lambda>_. g)"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   105
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   106
notation chain (infixl "\<guillemotright>" 54)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   107
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   108
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   109
subsubsection {* do-syntax *}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   110
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   111
text {*
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   112
  We provide a convenient do-notation for monadic expressions
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   113
  well-known from Haskell.  @{const Let} is printed
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   114
  specially in do-expressions.
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   115
*}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   116
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   117
nonterminals do_expr
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   118
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   119
syntax
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   120
  "_do" :: "do_expr \<Rightarrow> 'a"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   121
    ("(do (_)//done)" [12] 100)
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   122
  "_bind" :: "pttrn \<Rightarrow> 'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   123
    ("_ <- _;//_" [1000, 13, 12] 12)
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   124
  "_chain" :: "'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   125
    ("_;//_" [13, 12] 12)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   126
  "_let" :: "pttrn \<Rightarrow> 'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   127
    ("let _ = _;//_" [1000, 13, 12] 12)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   128
  "_nil" :: "'a \<Rightarrow> do_expr"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   129
    ("_" [12] 12)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   130
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   131
syntax (xsymbols)
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   132
  "_bind" :: "pttrn \<Rightarrow> 'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   133
    ("_ \<leftarrow> _;//_" [1000, 13, 12] 12)
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   134
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   135
translations
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   136
  "_do f" => "f"
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   137
  "_bind x f g" => "f \<guillemotright>= (\<lambda>x. g)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   138
  "_chain f g" => "f \<guillemotright> g"
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   139
  "_let x t f" => "CONST Let t (\<lambda>x. f)"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   140
  "_nil f" => "f"
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   141
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   142
print_translation {*
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   143
let
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   144
  fun dest_abs_eta (Abs (abs as (_, ty, _))) =
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   145
        let
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   146
          val (v, t) = Syntax.variant_abs abs;
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   147
        in (Free (v, ty), t) end
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   148
    | dest_abs_eta t =
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   149
        let
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   150
          val (v, t) = Syntax.variant_abs ("", dummyT, t $ Bound 0);
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   151
        in (Free (v, dummyT), t) end;
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   152
  fun unfold_monad (Const (@{const_syntax bindM}, _) $ f $ g) =
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   153
        let
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   154
          val (v, g') = dest_abs_eta g;
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   155
          val vs = fold_aterms (fn Free (v, _) => insert (op =) v | _ => I) v [];
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   156
          val v_used = fold_aterms
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   157
            (fn Free (w, _) => (fn s => s orelse member (op =) vs w) | _ => I) g' false;
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   158
        in if v_used then
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   159
          Const (@{syntax_const "_bind"}, dummyT) $ v $ f $ unfold_monad g'
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   160
        else
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   161
          Const (@{syntax_const "_chain"}, dummyT) $ f $ unfold_monad g'
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   162
        end
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   163
    | unfold_monad (Const (@{const_syntax chain}, _) $ f $ g) =
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   164
        Const (@{syntax_const "_chain"}, dummyT) $ f $ unfold_monad g
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   165
    | unfold_monad (Const (@{const_syntax Let}, _) $ f $ g) =
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   166
        let
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   167
          val (v, g') = dest_abs_eta g;
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   168
        in Const (@{syntax_const "_let"}, dummyT) $ v $ f $ unfold_monad g' end
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   169
    | unfold_monad (Const (@{const_syntax Pair}, _) $ f) =
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   170
        Const (@{const_syntax return}, dummyT) $ f
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   171
    | unfold_monad f = f;
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   172
  fun contains_bind (Const (@{const_syntax bindM}, _) $ _ $ _) = true
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   173
    | contains_bind (Const (@{const_syntax Let}, _) $ _ $ Abs (_, _, t)) =
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   174
        contains_bind t;
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   175
  fun bindM_monad_tr' (f::g::ts) = list_comb
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   176
    (Const (@{syntax_const "_do"}, dummyT) $
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   177
      unfold_monad (Const (@{const_syntax bindM}, dummyT) $ f $ g), ts);
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   178
  fun Let_monad_tr' (f :: (g as Abs (_, _, g')) :: ts) =
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   179
    if contains_bind g' then list_comb
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   180
      (Const (@{syntax_const "_do"}, dummyT) $
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   181
        unfold_monad (Const (@{const_syntax Let}, dummyT) $ f $ g), ts)
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   182
    else raise Match;
35113
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   183
in
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   184
 [(@{const_syntax bindM}, bindM_monad_tr'),
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   185
  (@{const_syntax Let}, Let_monad_tr')]
1a0c129bb2e0 modernized translations;
wenzelm
parents: 34051
diff changeset
   186
end;
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   187
*}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   188
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   189
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   190
subsection {* Monad properties *}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   191
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   192
subsection {* Generic combinators *}
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   193
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   194
definition assert :: "('a \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'a Heap" where
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   195
  "assert P x = (if P x then return x else raise ''assert'')"
28742
07073b1087dd moved assert to Heap_Monad.thy
haftmann
parents: 28663
diff changeset
   196
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   197
lemma execute_assert [simp]:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   198
  "P x \<Longrightarrow> execute (assert P x) h = Some (x, h)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   199
  "\<not> P x \<Longrightarrow> execute (assert P x) h = None"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   200
  by (simp_all add: assert_def)
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   201
28742
07073b1087dd moved assert to Heap_Monad.thy
haftmann
parents: 28663
diff changeset
   202
lemma assert_cong [fundef_cong]:
07073b1087dd moved assert to Heap_Monad.thy
haftmann
parents: 28663
diff changeset
   203
  assumes "P = P'"
07073b1087dd moved assert to Heap_Monad.thy
haftmann
parents: 28663
diff changeset
   204
  assumes "\<And>x. P' x \<Longrightarrow> f x = f' x"
07073b1087dd moved assert to Heap_Monad.thy
haftmann
parents: 28663
diff changeset
   205
  shows "(assert P x >>= f) = (assert P' x >>= f')"
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   206
  by (rule Heap_eqI) (insert assms, simp add: assert_def)
28742
07073b1087dd moved assert to Heap_Monad.thy
haftmann
parents: 28663
diff changeset
   207
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   208
definition lift :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b Heap" where
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   209
  "lift f = return o f"
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   210
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   211
lemma lift_collapse [simp]:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   212
  "lift f x = return (f x)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   213
  by (simp add: lift_def)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   214
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   215
lemma bind_lift:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   216
  "(f \<guillemotright>= lift g) = (f \<guillemotright>= (\<lambda>x. return (g x)))"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   217
  by (simp add: lift_def comp_def)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   218
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   219
primrec mapM :: "('a \<Rightarrow> 'b Heap) \<Rightarrow> 'a list \<Rightarrow> 'b list Heap" where (*FIXME just map?*)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   220
  "mapM f [] = return []"
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   221
| "mapM f (x # xs) = do
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   222
     y \<leftarrow> f x;
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   223
     ys \<leftarrow> mapM f xs;
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   224
     return (y # ys)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   225
   done"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   226
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   227
lemma mapM_append:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   228
  "mapM f (xs @ ys) = mapM f xs \<guillemotright>= (\<lambda>xs. mapM f ys \<guillemotright>= (\<lambda>ys. return (xs @ ys)))"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   229
  by (induct xs) simp_all
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   230
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   231
lemma execute_mapM_unchanged_heap:
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   232
  assumes "\<And>x. x \<in> set xs \<Longrightarrow> \<exists>y. execute (f x) h = Some (y, h)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   233
  shows "execute (mapM f xs) h =
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   234
    Some (List.map (\<lambda>x. fst (the (execute (f x) h))) xs, h)"
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   235
using assms proof (induct xs)
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   236
  case Nil show ?case by simp
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   237
next
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   238
  case (Cons x xs)
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   239
  from Cons.prems obtain y
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   240
    where y: "execute (f x) h = Some (y, h)" by auto
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   241
  moreover from Cons.prems Cons.hyps have "execute (mapM f xs) h =
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   242
    Some (map (\<lambda>x. fst (the (execute (f x) h))) xs, h)" by auto
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   243
  ultimately show ?case by (simp, simp only: execute_bind(1), simp)
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   244
qed
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   245
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   246
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   247
subsubsection {* A monadic combinator for simple recursive functions *}
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   248
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   249
text {* Using a locale to fix arguments f and g of MREC *}
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   250
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   251
locale mrec =
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   252
  fixes f :: "'a \<Rightarrow> ('b + 'a) Heap"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   253
  and g :: "'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b Heap"
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   254
begin
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   255
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   256
function (default "\<lambda>(x, h). None") mrec :: "'a \<Rightarrow> heap \<Rightarrow> ('b \<times> heap) option" where
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   257
  "mrec x h = (case execute (f x) h of
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   258
     Some (Inl r, h') \<Rightarrow> Some (r, h')
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   259
   | Some (Inr s, h') \<Rightarrow> (case mrec s h' of
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   260
             Some (z, h'') \<Rightarrow> execute (g x s z) h''
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   261
           | None \<Rightarrow> None)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   262
   | None \<Rightarrow> None)"
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   263
by auto
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   264
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   265
lemma graph_implies_dom:
35423
6ef9525a5727 eliminated hard tabs;
wenzelm
parents: 35113
diff changeset
   266
  "mrec_graph x y \<Longrightarrow> mrec_dom x"
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   267
apply (induct rule:mrec_graph.induct) 
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   268
apply (rule accpI)
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   269
apply (erule mrec_rel.cases)
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   270
by simp
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   271
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   272
lemma mrec_default: "\<not> mrec_dom (x, h) \<Longrightarrow> mrec x h = None"
35423
6ef9525a5727 eliminated hard tabs;
wenzelm
parents: 35113
diff changeset
   273
  unfolding mrec_def 
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   274
  by (rule fundef_default_value[OF mrec_sumC_def graph_implies_dom, of _ _ "(x, h)", simplified])
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   275
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   276
lemma mrec_di_reverse: 
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   277
  assumes "\<not> mrec_dom (x, h)"
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   278
  shows "
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   279
   (case execute (f x) h of
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   280
     Some (Inl r, h') \<Rightarrow> False
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   281
   | Some (Inr s, h') \<Rightarrow> \<not> mrec_dom (s, h')
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   282
   | None \<Rightarrow> False
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   283
   )" 
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   284
using assms apply (auto split: option.split sum.split)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   285
apply (rule ccontr)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   286
apply (erule notE, rule accpI, elim mrec_rel.cases, auto)+
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   287
done
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   288
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   289
lemma mrec_rule:
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   290
  "mrec x h = 
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   291
   (case execute (f x) h of
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   292
     Some (Inl r, h') \<Rightarrow> Some (r, h')
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   293
   | Some (Inr s, h') \<Rightarrow> 
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   294
          (case mrec s h' of
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   295
             Some (z, h'') \<Rightarrow> execute (g x s z) h''
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   296
           | None \<Rightarrow> None)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   297
   | None \<Rightarrow> None
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   298
   )"
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   299
apply (cases "mrec_dom (x,h)", simp)
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   300
apply (frule mrec_default)
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   301
apply (frule mrec_di_reverse, simp)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   302
by (auto split: sum.split option.split simp: mrec_default)
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   303
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   304
definition
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   305
  "MREC x = Heap (mrec x)"
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   306
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   307
lemma MREC_rule:
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   308
  "MREC x = 
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   309
  (do y \<leftarrow> f x;
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   310
                (case y of 
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   311
                Inl r \<Rightarrow> return r
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   312
              | Inr s \<Rightarrow> 
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   313
                do z \<leftarrow> MREC s ;
34051
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   314
                   g x s z
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   315
                done) done)"
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   316
  unfolding MREC_def
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   317
  unfolding bindM_def return_def
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   318
  apply simp
1a82e2e29d67 added Imperative_HOL examples; added tail-recursive combinator for monadic heap functions; adopted code generation of references; added lemmas
bulwahn
parents: 32069
diff changeset
   319
  apply (rule ext)
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   320
  apply (unfold mrec_rule[of x])
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   321
  by (auto split: option.splits prod.splits sum.splits)
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   322
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   323
lemma MREC_pinduct:
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   324
  assumes "execute (MREC x) h = Some (r, h')"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   325
  assumes non_rec_case: "\<And> x h h' r. execute (f x) h = Some (Inl r, h') \<Longrightarrow> P x h h' r"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   326
  assumes rec_case: "\<And> x h h1 h2 h' s z r. execute (f x) h = Some (Inr s, h1) \<Longrightarrow> execute (MREC s) h1 = Some (z, h2) \<Longrightarrow> P s h1 h2 z
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   327
    \<Longrightarrow> execute (g x s z) h2 = Some (r, h') \<Longrightarrow> P x h h' r"
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   328
  shows "P x h h' r"
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   329
proof -
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   330
  from assms(1) have mrec: "mrec x h = Some (r, h')"
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   331
    unfolding MREC_def execute.simps .
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   332
  from mrec have dom: "mrec_dom (x, h)"
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   333
    apply -
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   334
    apply (rule ccontr)
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   335
    apply (drule mrec_default) by auto
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   336
  from mrec have h'_r: "h' = snd (the (mrec x h))" "r = fst (the (mrec x h))"
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   337
    by auto
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   338
  from mrec have "P x h (snd (the (mrec x h))) (fst (the (mrec x h)))"
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   339
  proof (induct arbitrary: r h' rule: mrec.pinduct[OF dom])
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   340
    case (1 x h)
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   341
    obtain rr h' where "the (mrec x h) = (rr, h')" by fastsimp
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   342
    show ?case
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   343
    proof (cases "execute (f x) h")
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   344
      case (Some result)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   345
      then obtain a h1 where exec_f: "execute (f x) h = Some (a, h1)" by fastsimp
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   346
      note Inl' = this
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   347
      show ?thesis
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   348
      proof (cases a)
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   349
        case (Inl aa)
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   350
        from this Inl' 1(1) exec_f mrec non_rec_case show ?thesis
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   351
          by auto
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   352
      next
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   353
        case (Inr b)
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   354
        note Inr' = this
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   355
        show ?thesis
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   356
        proof (cases "mrec b h1")
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   357
          case (Some result)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   358
          then obtain aaa h2 where mrec_rec: "mrec b h1 = Some (aaa, h2)" by fastsimp
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   359
          moreover from this have "P b h1 (snd (the (mrec b h1))) (fst (the (mrec b h1)))"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   360
            apply (intro 1(2))
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   361
            apply (auto simp add: Inr Inl')
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   362
            done
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   363
          moreover note mrec mrec_rec exec_f Inl' Inr' 1(1) 1(3)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   364
          ultimately show ?thesis
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   365
            apply auto
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   366
            apply (rule rec_case)
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   367
            apply auto
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   368
            unfolding MREC_def by auto
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   369
        next
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   370
          case None
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   371
          from this 1(1) exec_f mrec Inr' 1(3) show ?thesis by auto
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   372
        qed
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   373
      qed
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   374
    next
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   375
      case None
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   376
      from this 1(1) mrec 1(3) show ?thesis by simp
36057
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   377
    qed
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   378
  qed
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   379
  from this h'_r show ?thesis by simp
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   380
qed
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   381
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   382
end
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   383
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   384
text {* Providing global versions of the constant and the theorems *}
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   385
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   386
abbreviation "MREC == mrec.MREC"
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   387
lemmas MREC_rule = mrec.MREC_rule
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   388
lemmas MREC_pinduct = mrec.MREC_pinduct
ca6610908ae9 adding MREC induction rule in Imperative HOL
bulwahn
parents: 35423
diff changeset
   389
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   390
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   391
subsection {* Code generator setup *}
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   392
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   393
subsubsection {* Logical intermediate layer *}
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   394
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   395
primrec raise' :: "String.literal \<Rightarrow> 'a Heap" where
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   396
  [code del, code_post]: "raise' (STR s) = raise s"
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   397
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   398
lemma raise_raise' [code_inline]:
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   399
  "raise s = raise' (STR s)"
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   400
  by simp
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   401
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   402
code_datatype raise' -- {* avoid @{const "Heap"} formally *}
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   403
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   404
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   405
subsubsection {* SML and OCaml *}
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   406
26752
6b276119139b corrected ML semantics
haftmann
parents: 26182
diff changeset
   407
code_type Heap (SML "unit/ ->/ _")
27826
4e50590ea9bc changed code setup
haftmann
parents: 27707
diff changeset
   408
code_const "op \<guillemotright>=" (SML "!(fn/ f'_/ =>/ fn/ ()/ =>/ f'_/ (_/ ())/ ())")
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   409
code_const return (SML "!(fn/ ()/ =>/ _)")
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   410
code_const Heap_Monad.raise' (SML "!(raise/ Fail/ _)")
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   411
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   412
code_type Heap (OCaml "unit/ ->/ _")
27826
4e50590ea9bc changed code setup
haftmann
parents: 27707
diff changeset
   413
code_const "op \<guillemotright>=" (OCaml "!(fun/ f'_/ ()/ ->/ f'_/ (_/ ())/ ())")
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   414
code_const return (OCaml "!(fun/ ()/ ->/ _)")
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   415
code_const Heap_Monad.raise' (OCaml "failwith/ _")
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   416
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   417
setup {*
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   418
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   419
let
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   420
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   421
open Code_Thingol;
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   422
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   423
fun imp_program naming =
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   424
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   425
  let
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   426
    fun is_const c = case lookup_const naming c
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   427
     of SOME c' => (fn c'' => c' = c'')
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   428
      | NONE => K false;
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   429
    val is_bind = is_const @{const_name bindM};
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   430
    val is_return = is_const @{const_name return};
31893
7d8a89390cbf adaptated to changes in term representation
haftmann
parents: 31871
diff changeset
   431
    val dummy_name = "";
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   432
    val dummy_type = ITyVar dummy_name;
31893
7d8a89390cbf adaptated to changes in term representation
haftmann
parents: 31871
diff changeset
   433
    val dummy_case_term = IVar NONE;
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   434
    (*assumption: dummy values are not relevant for serialization*)
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   435
    val unitt = case lookup_const naming @{const_name Unity}
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   436
     of SOME unit' => IConst (unit', (([], []), []))
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   437
      | NONE => error ("Must include " ^ @{const_name Unity} ^ " in generated constants.");
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   438
    fun dest_abs ((v, ty) `|=> t, _) = ((v, ty), t)
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   439
      | dest_abs (t, ty) =
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   440
          let
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   441
            val vs = fold_varnames cons t [];
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   442
            val v = Name.variant vs "x";
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   443
            val ty' = (hd o fst o unfold_fun) ty;
31893
7d8a89390cbf adaptated to changes in term representation
haftmann
parents: 31871
diff changeset
   444
          in ((SOME v, ty'), t `$ IVar (SOME v)) end;
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   445
    fun force (t as IConst (c, _) `$ t') = if is_return c
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   446
          then t' else t `$ unitt
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   447
      | force t = t `$ unitt;
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   448
    fun tr_bind' [(t1, _), (t2, ty2)] =
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   449
      let
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   450
        val ((v, ty), t) = dest_abs (t2, ty2);
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   451
      in ICase (((force t1, ty), [(IVar v, tr_bind'' t)]), dummy_case_term) end
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   452
    and tr_bind'' t = case unfold_app t
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   453
         of (IConst (c, (_, ty1 :: ty2 :: _)), [x1, x2]) => if is_bind c
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   454
              then tr_bind' [(x1, ty1), (x2, ty2)]
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   455
              else force t
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   456
          | _ => force t;
31893
7d8a89390cbf adaptated to changes in term representation
haftmann
parents: 31871
diff changeset
   457
    fun imp_monad_bind'' ts = (SOME dummy_name, dummy_type) `|=> ICase (((IVar (SOME dummy_name), dummy_type),
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   458
      [(unitt, tr_bind' ts)]), dummy_case_term)
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   459
    and imp_monad_bind' (const as (c, (_, tys))) ts = if is_bind c then case (ts, tys)
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   460
       of ([t1, t2], ty1 :: ty2 :: _) => imp_monad_bind'' [(t1, ty1), (t2, ty2)]
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   461
        | ([t1, t2, t3], ty1 :: ty2 :: _) => imp_monad_bind'' [(t1, ty1), (t2, ty2)] `$ t3
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   462
        | (ts, _) => imp_monad_bind (eta_expand 2 (const, ts))
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   463
      else IConst const `$$ map imp_monad_bind ts
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   464
    and imp_monad_bind (IConst const) = imp_monad_bind' const []
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   465
      | imp_monad_bind (t as IVar _) = t
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   466
      | imp_monad_bind (t as _ `$ _) = (case unfold_app t
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   467
         of (IConst const, ts) => imp_monad_bind' const ts
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   468
          | (t, ts) => imp_monad_bind t `$$ map imp_monad_bind ts)
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   469
      | imp_monad_bind (v_ty `|=> t) = v_ty `|=> imp_monad_bind t
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   470
      | imp_monad_bind (ICase (((t, ty), pats), t0)) = ICase
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   471
          (((imp_monad_bind t, ty),
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   472
            (map o pairself) imp_monad_bind pats),
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   473
              imp_monad_bind t0);
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28562
diff changeset
   474
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   475
  in (Graph.map_nodes o map_terms_stmt) imp_monad_bind end;
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   476
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   477
in
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   478
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   479
Code_Target.extend_target ("SML_imp", ("SML", imp_program))
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   480
#> Code_Target.extend_target ("OCaml_imp", ("OCaml", imp_program))
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   481
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   482
end
31871
cc1486840914 streamlined code
haftmann
parents: 31724
diff changeset
   483
27707
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   484
*}
54bf1fea9252 SML_imp, OCaml_imp
haftmann
parents: 27695
diff changeset
   485
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   486
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   487
subsubsection {* Haskell *}
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   488
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   489
text {* Adaption layer *}
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   490
29793
86cac1fab613 changed name space policy for Haskell includes
haftmann
parents: 29399
diff changeset
   491
code_include Haskell "Heap"
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   492
{*import qualified Control.Monad;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   493
import qualified Control.Monad.ST;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   494
import qualified Data.STRef;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   495
import qualified Data.Array.ST;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   496
27695
033732c90ebd Haskell now living in the RealWorld
haftmann
parents: 27673
diff changeset
   497
type RealWorld = Control.Monad.ST.RealWorld;
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   498
type ST s a = Control.Monad.ST.ST s a;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   499
type STRef s a = Data.STRef.STRef s a;
27673
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   500
type STArray s a = Data.Array.ST.STArray s Int a;
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   501
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   502
newSTRef = Data.STRef.newSTRef;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   503
readSTRef = Data.STRef.readSTRef;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   504
writeSTRef = Data.STRef.writeSTRef;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   505
27673
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   506
newArray :: (Int, Int) -> a -> ST s (STArray s a);
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   507
newArray = Data.Array.ST.newArray;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   508
27673
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   509
newListArray :: (Int, Int) -> [a] -> ST s (STArray s a);
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   510
newListArray = Data.Array.ST.newListArray;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   511
27673
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   512
lengthArray :: STArray s a -> ST s Int;
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   513
lengthArray a = Control.Monad.liftM snd (Data.Array.ST.getBounds a);
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   514
27673
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   515
readArray :: STArray s a -> Int -> ST s a;
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   516
readArray = Data.Array.ST.readArray;
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   517
27673
52056ddac194 fixed code generator setup
haftmann
parents: 26753
diff changeset
   518
writeArray :: STArray s a -> Int -> a -> ST s ();
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   519
writeArray = Data.Array.ST.writeArray;*}
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   520
29793
86cac1fab613 changed name space policy for Haskell includes
haftmann
parents: 29399
diff changeset
   521
code_reserved Haskell Heap
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   522
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   523
text {* Monad *}
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   524
29793
86cac1fab613 changed name space policy for Haskell includes
haftmann
parents: 29399
diff changeset
   525
code_type Heap (Haskell "Heap.ST/ Heap.RealWorld/ _")
28145
af3923ed4786 dropped "run" marker in monad syntax
haftmann
parents: 28054
diff changeset
   526
code_monad "op \<guillemotright>=" Haskell
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   527
code_const return (Haskell "return")
37709
70fafefbcc98 simplified representation of monad type
haftmann
parents: 37591
diff changeset
   528
code_const Heap_Monad.raise' (Haskell "error/ _")
26182
8262ec0e8782 added code generator setup
haftmann
parents: 26170
diff changeset
   529
37754
683d1e1bc234 guard combinator
haftmann
parents: 37724
diff changeset
   530
hide_const (open) Heap heap guard execute raise'
37724
haftmann
parents: 37709
diff changeset
   531
26170
66e6b967ccf1 added theories for imperative HOL
haftmann
parents:
diff changeset
   532
end