src/HOL/Library/State_Monad.thy
author haftmann
Wed, 09 Apr 2008 08:10:11 +0200
changeset 26588 d83271bfaba5
parent 26266 35ae83ca190a
child 27368 9f90ac19e32b
permissions -rw-r--r--
removed syntax from monad combinators; renamed mbind to scomp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Library/State_Monad.thy
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     2
    ID:         $Id$
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     4
*)
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     5
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     6
header {* Combinators syntax for generic, open state monads (single threaded monads) *}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     7
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
     8
theory State_Monad
25595
6c48275f9c76 switched import from Main to List
haftmann
parents: 24253
diff changeset
     9
imports List
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    10
begin
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    11
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    12
subsection {* Motivation *}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    13
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    14
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    15
  The logic HOL has no notion of constructor classes, so
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    16
  it is not possible to model monads the Haskell way
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    17
  in full genericity in Isabelle/HOL.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    18
  
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    19
  However, this theory provides substantial support for
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    20
  a very common class of monads: \emph{state monads}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    21
  (or \emph{single-threaded monads}, since a state
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    22
  is transformed single-threaded).
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    23
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    24
  To enter from the Haskell world,
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    25
  \url{http://www.engr.mun.ca/~theo/Misc/haskell_and_monads.htm}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    26
  makes a good motivating start.  Here we just sketch briefly
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    27
  how those monads enter the game of Isabelle/HOL.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    28
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    29
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    30
subsection {* State transformations and combinators *}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    31
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    32
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    33
  We classify functions operating on states into two categories:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    34
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    35
  \begin{description}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    36
    \item[transformations]
26266
haftmann
parents: 26260
diff changeset
    37
      with type signature @{text "\<sigma> \<Rightarrow> \<sigma>'"},
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    38
      transforming a state.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    39
    \item[``yielding'' transformations]
26266
haftmann
parents: 26260
diff changeset
    40
      with type signature @{text "\<sigma> \<Rightarrow> \<alpha> \<times> \<sigma>'"},
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    41
      ``yielding'' a side result while transforming a state.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    42
    \item[queries]
26266
haftmann
parents: 26260
diff changeset
    43
      with type signature @{text "\<sigma> \<Rightarrow> \<alpha>"},
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    44
      computing a result dependent on a state.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    45
  \end{description}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    46
26266
haftmann
parents: 26260
diff changeset
    47
  By convention we write @{text "\<sigma>"} for types representing states
haftmann
parents: 26260
diff changeset
    48
  and @{text "\<alpha>"}, @{text "\<beta>"}, @{text "\<gamma>"}, @{text "\<dots>"}
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    49
  for types representing side results.  Type changes due
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    50
  to transformations are not excluded in our scenario.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    51
26266
haftmann
parents: 26260
diff changeset
    52
  We aim to assert that values of any state type @{text "\<sigma>"}
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    53
  are used in a single-threaded way: after application
26266
haftmann
parents: 26260
diff changeset
    54
  of a transformation on a value of type @{text "\<sigma>"}, the
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    55
  former value should not be used again.  To achieve this,
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    56
  we use a set of monad combinators:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    57
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    58
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
    59
notation fcomp (infixl ">>" 60)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
    60
notation (xsymbols) fcomp (infixl "\<guillemotright>" 60)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
    61
notation scomp (infixl ">>=" 60)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
    62
notation (xsymbols) scomp (infixl "\<guillemotright>=" 60)
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21283
diff changeset
    63
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
    64
abbreviation (input)
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
    65
  "return \<equiv> Pair"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21283
diff changeset
    66
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21283
diff changeset
    67
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21283
diff changeset
    68
  run :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b" where
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    69
  "run f = f"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    70
22377
61610b1beedf tuned ML setup;
wenzelm
parents: 21835
diff changeset
    71
print_ast_translation {*
61610b1beedf tuned ML setup;
wenzelm
parents: 21835
diff changeset
    72
  [(@{const_syntax "run"}, fn (f::ts) => Syntax.mk_appl f ts)]
61610b1beedf tuned ML setup;
wenzelm
parents: 21835
diff changeset
    73
*}
21835
84fd5de0691c whitespace correction
haftmann
parents: 21818
diff changeset
    74
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    75
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    76
  Given two transformations @{term f} and @{term g}, they
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    77
  may be directly composed using the @{term "op \<guillemotright>"} combinator,
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    78
  forming a forward composition: @{prop "(f \<guillemotright> g) s = f (g s)"}.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    79
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    80
  After any yielding transformation, we bind the side result
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    81
  immediately using a lambda abstraction.  This 
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    82
  is the purpose of the @{term "op \<guillemotright>="} combinator:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    83
  @{prop "(f \<guillemotright>= (\<lambda>x. g)) s = (let (x, s') = f s in g s')"}.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    84
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    85
  For queries, the existing @{term "Let"} is appropriate.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    86
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    87
  Naturally, a computation may yield a side result by pairing
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    88
  it to the state from the left;  we introduce the
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    89
  suggestive abbreviation @{term return} for this purpose.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    90
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    91
  The @{const run} ist just a marker.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    92
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    93
  The most crucial distinction to Haskell is that we do
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    94
  not need to introduce distinguished type constructors
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    95
  for different kinds of state.  This has two consequences:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    96
  \begin{itemize}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    97
    \item The monad model does not state anything about
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
    98
       the kind of state; the model for the state is
26260
haftmann
parents: 26141
diff changeset
    99
       completely orthogonal and may be
haftmann
parents: 26141
diff changeset
   100
       specified completely independently.
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   101
    \item There is no distinguished type constructor
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   102
       encapsulating away the state transformation, i.e.~transformations
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   103
       may be applied directly without using any lifting
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   104
       or providing and dropping units (``open monad'').
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   105
    \item The type of states may change due to a transformation.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   106
  \end{itemize}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   107
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   108
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   109
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   110
subsection {* Obsolete runs *}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   111
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   112
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   113
  @{term run} is just a doodle and should not occur nested:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   114
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   115
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   116
lemma run_simp [simp]:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   117
  "\<And>f. run (run f) = run f"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   118
  "\<And>f g. run f \<guillemotright>= g = f \<guillemotright>= g"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   119
  "\<And>f g. run f \<guillemotright> g = f \<guillemotright> g"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   120
  "\<And>f g. f \<guillemotright>= (\<lambda>x. run g) = f \<guillemotright>= (\<lambda>x. g)"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   121
  "\<And>f g. f \<guillemotright> run g = f \<guillemotright> g"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   122
  "\<And>f. f = run f \<longleftrightarrow> True"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   123
  "\<And>f. run f = f \<longleftrightarrow> True"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   124
  unfolding run_def by rule+
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   125
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   126
subsection {* Monad laws *}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   127
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   128
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   129
  The common monadic laws hold and may also be used
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   130
  as normalization rules for monadic expressions:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   131
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   132
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   133
lemma
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   134
  return_scomp [simp]: "return x \<guillemotright>= f = f x"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   135
  unfolding scomp_def by (simp add: expand_fun_eq)
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   136
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   137
lemma
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   138
  scomp_return [simp]: "x \<guillemotright>= return = x"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   139
  unfolding scomp_def by (simp add: expand_fun_eq split_Pair)
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   140
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   141
lemma
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   142
  id_fcomp [simp]: "id \<guillemotright> f = f"
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   143
  unfolding fcomp_def by simp
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   144
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   145
lemma
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   146
  fcomp_id [simp]: "f \<guillemotright> id = f"
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   147
  unfolding fcomp_def by simp
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   148
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   149
lemma
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   150
  scomp_scomp [simp]: "(f \<guillemotright>= g) \<guillemotright>= h = f \<guillemotright>= (\<lambda>x. g x \<guillemotright>= h)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   151
  unfolding scomp_def by (simp add: split_def expand_fun_eq)
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   152
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   153
lemma
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   154
  scomp_fcomp [simp]: "(f \<guillemotright>= g) \<guillemotright> h = f \<guillemotright>= (\<lambda>x. g x \<guillemotright> h)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   155
  unfolding scomp_def fcomp_def by (simp add: split_def expand_fun_eq)
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   156
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   157
lemma
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   158
  fcomp_scomp [simp]: "(f \<guillemotright> g) \<guillemotright>= h = f \<guillemotright> (g \<guillemotright>= h)"
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   159
  unfolding scomp_def fcomp_def by (simp add: split_def expand_fun_eq)
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   160
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   161
lemma
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   162
  fcomp_fcomp [simp]: "(f \<guillemotright> g) \<guillemotright> h = f \<guillemotright> (g \<guillemotright> h)"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   163
  unfolding fcomp_def o_assoc ..
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   164
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   165
lemmas monad_simp = run_simp return_scomp scomp_return id_fcomp fcomp_id
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   166
  scomp_scomp scomp_fcomp fcomp_scomp fcomp_fcomp
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   167
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   168
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   169
  Evaluation of monadic expressions by force:
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   170
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   171
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   172
lemmas monad_collapse = monad_simp o_apply o_assoc split_Pair split_comp
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   173
  scomp_def fcomp_def run_def
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   174
26260
haftmann
parents: 26141
diff changeset
   175
subsection {* ML abstract operations *}
haftmann
parents: 26141
diff changeset
   176
haftmann
parents: 26141
diff changeset
   177
ML {*
haftmann
parents: 26141
diff changeset
   178
structure StateMonad =
haftmann
parents: 26141
diff changeset
   179
struct
haftmann
parents: 26141
diff changeset
   180
haftmann
parents: 26141
diff changeset
   181
fun liftT T sT = sT --> HOLogic.mk_prodT (T, sT);
haftmann
parents: 26141
diff changeset
   182
fun liftT' sT = sT --> sT;
haftmann
parents: 26141
diff changeset
   183
haftmann
parents: 26141
diff changeset
   184
fun return T sT x = Const (@{const_name return}, T --> liftT T sT) $ x;
haftmann
parents: 26141
diff changeset
   185
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   186
fun scomp T1 T2 sT f g = Const (@{const_name scomp},
26260
haftmann
parents: 26141
diff changeset
   187
  liftT T1 sT --> (T1 --> liftT T2 sT) --> liftT T2 sT) $ f $ g;
haftmann
parents: 26141
diff changeset
   188
haftmann
parents: 26141
diff changeset
   189
fun run T sT f = Const (@{const_name run}, liftT' (liftT T sT)) $ f;
haftmann
parents: 26141
diff changeset
   190
haftmann
parents: 26141
diff changeset
   191
end;
haftmann
parents: 26141
diff changeset
   192
*}
haftmann
parents: 26141
diff changeset
   193
haftmann
parents: 26141
diff changeset
   194
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   195
subsection {* Syntax *}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   196
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   197
text {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   198
  We provide a convenient do-notation for monadic expressions
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   199
  well-known from Haskell.  @{const Let} is printed
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   200
  specially in do-expressions.
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   201
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   202
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   203
nonterminals do_expr
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   204
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   205
syntax
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   206
  "_do" :: "do_expr \<Rightarrow> 'a"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   207
    ("do _ done" [12] 12)
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   208
  "_scomp" :: "pttrn \<Rightarrow> 'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   209
    ("_ <- _;// _" [1000, 13, 12] 12)
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   210
  "_fcomp" :: "'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   211
    ("_;// _" [13, 12] 12)
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   212
  "_let" :: "pttrn \<Rightarrow> 'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   213
    ("let _ = _;// _" [1000, 13, 12] 12)
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   214
  "_nil" :: "'a \<Rightarrow> do_expr"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   215
    ("_" [12] 12)
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   216
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   217
syntax (xsymbols)
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   218
  "_scomp" :: "pttrn \<Rightarrow> 'a \<Rightarrow> do_expr \<Rightarrow> do_expr"
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   219
    ("_ \<leftarrow> _;// _" [1000, 13, 12] 12)
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   220
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   221
translations
22664
e965391e2864 do translation: CONST;
wenzelm
parents: 22492
diff changeset
   222
  "_do f" => "CONST run f"
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   223
  "_scomp x f g" => "f \<guillemotright>= (\<lambda>x. g)"
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   224
  "_fcomp f g" => "f \<guillemotright> g"
24195
haftmann
parents: 22664
diff changeset
   225
  "_let x t f" => "CONST Let t (\<lambda>x. f)"
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   226
  "_nil f" => "f"
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   227
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   228
print_translation {*
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   229
let
24253
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   230
  fun dest_abs_eta (Abs (abs as (_, ty, _))) =
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   231
        let
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   232
          val (v, t) = Syntax.variant_abs abs;
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   233
        in ((v, ty), t) end
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   234
    | dest_abs_eta t =
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   235
        let
24253
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   236
          val (v, t) = Syntax.variant_abs ("", dummyT, t $ Bound 0);
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   237
        in ((v, dummyT), t) end
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   238
  fun unfold_monad (Const (@{const_syntax scomp}, _) $ f $ g) =
24253
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   239
        let
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   240
          val ((v, ty), g') = dest_abs_eta g;
26588
d83271bfaba5 removed syntax from monad combinators; renamed mbind to scomp
haftmann
parents: 26266
diff changeset
   241
        in Const ("_scomp", dummyT) $ Free (v, ty) $ f $ unfold_monad g' end
24195
haftmann
parents: 22664
diff changeset
   242
    | unfold_monad (Const (@{const_syntax fcomp}, _) $ f $ g) =
haftmann
parents: 22664
diff changeset
   243
        Const ("_fcomp", dummyT) $ f $ unfold_monad g
24253
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   244
    | unfold_monad (Const (@{const_syntax Let}, _) $ f $ g) =
24195
haftmann
parents: 22664
diff changeset
   245
        let
24253
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   246
          val ((v, ty), g') = dest_abs_eta g;
3d7f74fd9fd9 fixed syntax
haftmann
parents: 24224
diff changeset
   247
        in Const ("_let", dummyT) $ Free (v, ty) $ f $ unfold_monad g' end
24195
haftmann
parents: 22664
diff changeset
   248
    | unfold_monad (Const (@{const_syntax Pair}, _) $ f) =
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   249
        Const ("return", dummyT) $ f
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   250
    | unfold_monad f = f;
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   251
  fun tr' (f::ts) =
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   252
    list_comb (Const ("_do", dummyT) $ unfold_monad f, ts)
22377
61610b1beedf tuned ML setup;
wenzelm
parents: 21835
diff changeset
   253
in [(@{const_syntax "run"}, tr')] end;
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   254
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   255
24195
haftmann
parents: 22664
diff changeset
   256
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   257
subsection {* Combinators *}
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   258
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   259
definition
21601
6588b947d631 simplified syntax for 'definition', 'abbreviation';
wenzelm
parents: 21418
diff changeset
   260
  lift :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'c \<Rightarrow> 'b \<times> 'c" where
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   261
  "lift f x = return (f x)"
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   262
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   263
primrec
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   264
  list :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   265
  "list f [] = id"
22492
43545e640877 Unified function syntax
krauss
parents: 22377
diff changeset
   266
| "list f (x#xs) = (do f x; list f xs done)"
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   267
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   268
primrec
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   269
  list_yield :: "('a \<Rightarrow> 'b \<Rightarrow> 'c \<times> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'c list \<times> 'b" where
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   270
  "list_yield f [] = return []"
22492
43545e640877 Unified function syntax
krauss
parents: 22377
diff changeset
   271
| "list_yield f (x#xs) = (do y \<leftarrow> f x; ys \<leftarrow> list_yield f xs; return (y#ys) done)"
26141
e1b3a6953cdc operation collapse
haftmann
parents: 25765
diff changeset
   272
e1b3a6953cdc operation collapse
haftmann
parents: 25765
diff changeset
   273
definition
26260
haftmann
parents: 26141
diff changeset
   274
  collapse :: "('a \<Rightarrow> ('a \<Rightarrow> 'b \<times> 'a) \<times> 'a) \<Rightarrow> 'a \<Rightarrow> 'b \<times> 'a" where
26141
e1b3a6953cdc operation collapse
haftmann
parents: 25765
diff changeset
   275
  "collapse f = (do g \<leftarrow> f; g done)"
e1b3a6953cdc operation collapse
haftmann
parents: 25765
diff changeset
   276
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   277
text {* combinator properties *}
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   278
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   279
lemma list_append [simp]:
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   280
  "list f (xs @ ys) = list f xs \<guillemotright> list f ys"
26141
e1b3a6953cdc operation collapse
haftmann
parents: 25765
diff changeset
   281
  by (induct xs) (simp_all del: id_apply)
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   282
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   283
lemma list_cong [fundef_cong, recdef_cong]:
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   284
  "\<lbrakk> \<And>x. x \<in> set xs \<Longrightarrow> f x = g x; xs = ys \<rbrakk>
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   285
    \<Longrightarrow> list f xs = list g ys"
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   286
proof (induct xs arbitrary: ys)
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   287
  case Nil then show ?case by simp
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   288
next
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   289
  case (Cons x xs)
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   290
  from Cons have "\<And>y. y \<in> set (x # xs) \<Longrightarrow> f y = g y" by auto
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   291
  then have "\<And>y. y \<in> set xs \<Longrightarrow> f y = g y" by auto
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   292
  with Cons have "list f xs = list g xs" by auto
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   293
  with Cons have "list f (x # xs) = list g (x # xs)" by auto
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   294
  with Cons show "list f (x # xs) = list g ys" by auto
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   295
qed
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   296
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   297
lemma list_yield_cong [fundef_cong, recdef_cong]:
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   298
  "\<lbrakk> \<And>x. x \<in> set xs \<Longrightarrow> f x = g x; xs = ys \<rbrakk>
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   299
    \<Longrightarrow> list_yield f xs = list_yield g ys"
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   300
proof (induct xs arbitrary: ys)
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   301
  case Nil then show ?case by simp
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   302
next
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   303
  case (Cons x xs)
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   304
  from Cons have "\<And>y. y \<in> set (x # xs) \<Longrightarrow> f y = g y" by auto
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   305
  then have "\<And>y. y \<in> set xs \<Longrightarrow> f y = g y" by auto
25765
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   306
  with Cons have "list_yield f xs = list_yield g xs" by auto
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   307
  with Cons have "list_yield f (x # xs) = list_yield g (x # xs)" by auto
49580bd58a21 some more primrec
haftmann
parents: 25595
diff changeset
   308
  with Cons show "list_yield f (x # xs) = list_yield g ys" by auto
21418
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   309
qed
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   310
4bc2882f80af added combinators and lemmas
haftmann
parents: 21404
diff changeset
   311
text {*
24195
haftmann
parents: 22664
diff changeset
   312
  For an example, see HOL/ex/Random.thy.
21192
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   313
*}
5fe5cd5fede7 added state monad to HOL library
haftmann
parents:
diff changeset
   314
22664
e965391e2864 do translation: CONST;
wenzelm
parents: 22492
diff changeset
   315
end