src/HOLCF/Fixrec.thy
author wenzelm
Fri, 21 May 2010 18:10:19 +0200
changeset 37043 f8e24980af05
parent 36998 9316a18ec931
child 37079 0cd15d8c90a0
permissions -rw-r--r--
more robust Position.setmp_thread_data, independently of Output.debugging (essentially reverts f9ec18f7c0f6, which was motivated by clean exception_trace, but without transaction positions the Isabelle_Process protocol breaks down);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/Fixrec.thy
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     2
    Author:     Amber Telfer and Brian Huffman
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     3
*)
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     4
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     5
header "Package for defining recursive functions in HOLCF"
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     6
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
     7
theory Fixrec
35939
db69a6a1fbb5 minimize dependencies
huffman
parents: 35926
diff changeset
     8
imports Cprod Sprod Ssum Up One Tr Fix
35527
f4282471461d fixrec and repdef modules import holcf_library
huffman
parents: 35469
diff changeset
     9
uses
f4282471461d fixrec and repdef modules import holcf_library
huffman
parents: 35469
diff changeset
    10
  ("Tools/holcf_library.ML")
f4282471461d fixrec and repdef modules import holcf_library
huffman
parents: 35469
diff changeset
    11
  ("Tools/fixrec.ML")
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    12
begin
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    13
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    14
subsection {* Maybe monad type *}
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    15
36452
d37c6eed8117 renamed command 'defaultsort' to 'default_sort';
wenzelm
parents: 36176
diff changeset
    16
default_sort cpo
16776
a3899ac14a1c generalized types of monadic operators to class cpo; added match function for UU
huffman
parents: 16758
diff changeset
    17
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    18
pcpodef (open) 'a maybe = "UNIV::(one ++ 'a u) set"
29063
7619f0561cd7 pcpodef package: state two goals, instead of encoded conjunction;
wenzelm
parents: 28891
diff changeset
    19
by simp_all
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    20
29141
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    21
definition
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    22
  fail :: "'a maybe" where
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    23
  "fail = Abs_maybe (sinl\<cdot>ONE)"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    24
29141
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    25
definition
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    26
  return :: "'a \<rightarrow> 'a maybe" where
29141
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    27
  "return = (\<Lambda> x. Abs_maybe (sinr\<cdot>(up\<cdot>x)))"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    28
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    29
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    30
  maybe_when :: "'b \<rightarrow> ('a \<rightarrow> 'b) \<rightarrow> 'a maybe \<rightarrow> 'b::pcpo" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    31
  "maybe_when = (\<Lambda> f r m. sscase\<cdot>(\<Lambda> x. f)\<cdot>(fup\<cdot>r)\<cdot>(Rep_maybe m))"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    32
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    33
lemma maybeE:
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    34
  "\<lbrakk>p = \<bottom> \<Longrightarrow> Q; p = fail \<Longrightarrow> Q; \<And>x. p = return\<cdot>x \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    35
apply (unfold fail_def return_def)
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    36
apply (cases p, rename_tac r)
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    37
apply (rule_tac p=r in ssumE, simp add: Abs_maybe_strict)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    38
apply (rule_tac p=x in oneE, simp, simp)
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    39
apply (rule_tac p=y in upE, simp, simp add: cont_Abs_maybe)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    40
done
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    41
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    42
lemma return_defined [simp]: "return\<cdot>x \<noteq> \<bottom>"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    43
by (simp add: return_def cont_Abs_maybe Abs_maybe_defined)
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    44
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    45
lemma fail_defined [simp]: "fail \<noteq> \<bottom>"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    46
by (simp add: fail_def Abs_maybe_defined)
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    47
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    48
lemma return_eq [simp]: "(return\<cdot>x = return\<cdot>y) = (x = y)"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    49
by (simp add: return_def cont_Abs_maybe Abs_maybe_inject)
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    50
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    51
lemma return_neq_fail [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    52
  "return\<cdot>x \<noteq> fail" "fail \<noteq> return\<cdot>x"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    53
by (simp_all add: return_def fail_def cont_Abs_maybe Abs_maybe_inject)
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    54
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    55
lemma maybe_when_rews [simp]:
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    56
  "maybe_when\<cdot>f\<cdot>r\<cdot>\<bottom> = \<bottom>"
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    57
  "maybe_when\<cdot>f\<cdot>r\<cdot>fail = f"
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    58
  "maybe_when\<cdot>f\<cdot>r\<cdot>(return\<cdot>x) = r\<cdot>x"
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    59
by (simp_all add: return_def fail_def maybe_when_def cont_Rep_maybe
29530
9905b660612b change to simpler, more extensible continuity simproc
huffman
parents: 29322
diff changeset
    60
                  cont2cont_LAM
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    61
                  cont_Abs_maybe Abs_maybe_inverse Rep_maybe_strict)
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    62
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    63
translations
29141
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    64
  "case m of XCONST fail \<Rightarrow> t1 | XCONST return\<cdot>x \<Rightarrow> t2"
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
    65
    == "CONST maybe_when\<cdot>t1\<cdot>(\<Lambda> x. t2)\<cdot>m"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    66
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
    67
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
    68
subsubsection {* Run operator *}
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    69
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    70
definition
28891
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
    71
  run :: "'a maybe \<rightarrow> 'a::pcpo" where
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    72
  "run = maybe_when\<cdot>\<bottom>\<cdot>ID"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    73
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    74
text {* rewrite rules for run *}
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    75
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    76
lemma run_strict [simp]: "run\<cdot>\<bottom> = \<bottom>"
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    77
by (simp add: run_def)
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    78
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    79
lemma run_fail [simp]: "run\<cdot>fail = \<bottom>"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    80
by (simp add: run_def)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    81
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    82
lemma run_return [simp]: "run\<cdot>(return\<cdot>x) = x"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
    83
by (simp add: run_def)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    84
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
    85
subsubsection {* Monad plus operator *}
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    86
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    87
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    88
  mplus :: "'a maybe \<rightarrow> 'a maybe \<rightarrow> 'a maybe" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    89
  "mplus = (\<Lambda> m1 m2. case m1 of fail \<Rightarrow> m2 | return\<cdot>x \<Rightarrow> m1)"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
    90
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    91
abbreviation
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    92
  mplus_syn :: "['a maybe, 'a maybe] \<Rightarrow> 'a maybe"  (infixr "+++" 65)  where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
    93
  "m1 +++ m2 == mplus\<cdot>m1\<cdot>m2"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    94
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    95
text {* rewrite rules for mplus *}
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    96
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    97
lemma mplus_strict [simp]: "\<bottom> +++ m = \<bottom>"
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    98
by (simp add: mplus_def)
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
    99
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   100
lemma mplus_fail [simp]: "fail +++ m = m"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
   101
by (simp add: mplus_def)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   102
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   103
lemma mplus_return [simp]: "return\<cdot>x +++ m = return\<cdot>x"
19092
e32cf29f01fc make maybe into a real type constructor; remove monad syntax
huffman
parents: 18293
diff changeset
   104
by (simp add: mplus_def)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   105
16460
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   106
lemma mplus_fail2 [simp]: "m +++ fail = m"
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   107
by (rule_tac p=m in maybeE, simp_all)
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   108
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   109
lemma mplus_assoc: "(x +++ y) +++ z = x +++ (y +++ z)"
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   110
by (rule_tac p=x in maybeE, simp_all)
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   111
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   112
subsubsection {* Fatbar combinator *}
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   113
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   114
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   115
  fatbar :: "('a \<rightarrow> 'b maybe) \<rightarrow> ('a \<rightarrow> 'b maybe) \<rightarrow> ('a \<rightarrow> 'b maybe)" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   116
  "fatbar = (\<Lambda> a b x. a\<cdot>x +++ b\<cdot>x)"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   117
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   118
abbreviation
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   119
  fatbar_syn :: "['a \<rightarrow> 'b maybe, 'a \<rightarrow> 'b maybe] \<Rightarrow> 'a \<rightarrow> 'b maybe" (infixr "\<parallel>" 60)  where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   120
  "m1 \<parallel> m2 == fatbar\<cdot>m1\<cdot>m2"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   121
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   122
lemma fatbar1: "m\<cdot>x = \<bottom> \<Longrightarrow> (m \<parallel> ms)\<cdot>x = \<bottom>"
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   123
by (simp add: fatbar_def)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   124
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   125
lemma fatbar2: "m\<cdot>x = fail \<Longrightarrow> (m \<parallel> ms)\<cdot>x = ms\<cdot>x"
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   126
by (simp add: fatbar_def)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   127
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   128
lemma fatbar3: "m\<cdot>x = return\<cdot>y \<Longrightarrow> (m \<parallel> ms)\<cdot>x = return\<cdot>y"
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   129
by (simp add: fatbar_def)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   130
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   131
lemmas fatbar_simps = fatbar1 fatbar2 fatbar3
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   132
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   133
lemma run_fatbar1: "m\<cdot>x = \<bottom> \<Longrightarrow> run\<cdot>((m \<parallel> ms)\<cdot>x) = \<bottom>"
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   134
by (simp add: fatbar_def)
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   135
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   136
lemma run_fatbar2: "m\<cdot>x = fail \<Longrightarrow> run\<cdot>((m \<parallel> ms)\<cdot>x) = run\<cdot>(ms\<cdot>x)"
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   137
by (simp add: fatbar_def)
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   138
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   139
lemma run_fatbar3: "m\<cdot>x = return\<cdot>y \<Longrightarrow> run\<cdot>((m \<parallel> ms)\<cdot>x) = y"
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   140
by (simp add: fatbar_def)
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   141
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   142
lemmas run_fatbar_simps [simp] = run_fatbar1 run_fatbar2 run_fatbar3
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   143
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   144
subsection {* Case branch combinator *}
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   145
29141
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
   146
definition
d5582ab1311f constdefs -> definition
huffman
parents: 29138
diff changeset
   147
  branch :: "('a \<rightarrow> 'b maybe) \<Rightarrow> ('b \<rightarrow> 'c) \<rightarrow> ('a \<rightarrow> 'c maybe)" where
36998
9316a18ec931 remove unnecessary constant Fixrec.bind
huffman
parents: 36452
diff changeset
   148
  "branch p \<equiv> \<Lambda> r x. maybe_when\<cdot>fail\<cdot>(\<Lambda> y. return\<cdot>(r\<cdot>y))\<cdot>(p\<cdot>x)"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   149
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   150
lemma branch_rews:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   151
  "p\<cdot>x = \<bottom> \<Longrightarrow> branch p\<cdot>r\<cdot>x = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   152
  "p\<cdot>x = fail \<Longrightarrow> branch p\<cdot>r\<cdot>x = fail"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   153
  "p\<cdot>x = return\<cdot>y \<Longrightarrow> branch p\<cdot>r\<cdot>x = return\<cdot>(r\<cdot>y)"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   154
by (simp_all add: branch_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   155
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   156
lemma branch_return [simp]: "branch return\<cdot>r\<cdot>x = return\<cdot>(r\<cdot>x)"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   157
by (simp add: branch_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   158
28891
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   159
subsubsection {* Cases operator *}
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   160
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   161
definition
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   162
  cases :: "'a maybe \<rightarrow> 'a::pcpo" where
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   163
  "cases = maybe_when\<cdot>\<bottom>\<cdot>ID"
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   164
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   165
text {* rewrite rules for cases *}
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   166
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   167
lemma cases_strict [simp]: "cases\<cdot>\<bottom> = \<bottom>"
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   168
by (simp add: cases_def)
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   169
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   170
lemma cases_fail [simp]: "cases\<cdot>fail = \<bottom>"
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   171
by (simp add: cases_def)
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   172
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   173
lemma cases_return [simp]: "cases\<cdot>(return\<cdot>x) = x"
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   174
by (simp add: cases_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   175
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   176
subsection {* Case syntax *}
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   177
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   178
nonterminals
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   179
  Case_syn  Cases_syn
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   180
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   181
syntax
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   182
  "_Case_syntax":: "['a, Cases_syn] => 'b"               ("(Case _ of/ _)" 10)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   183
  "_Case1"      :: "['a, 'b] => Case_syn"                ("(2_ =>/ _)" 10)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   184
  ""            :: "Case_syn => Cases_syn"               ("_")
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   185
  "_Case2"      :: "[Case_syn, Cases_syn] => Cases_syn"  ("_/ | _")
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   186
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   187
syntax (xsymbols)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   188
  "_Case1"      :: "['a, 'b] => Case_syn"                ("(2_ \<Rightarrow>/ _)" 10)
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   189
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   190
translations
28891
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   191
  "_Case_syntax x ms" == "CONST Fixrec.cases\<cdot>(ms\<cdot>x)"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   192
  "_Case2 m ms" == "m \<parallel> ms"
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   193
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   194
text {* Parsing Case expressions *}
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   195
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   196
syntax
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   197
  "_pat" :: "'a"
29322
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   198
  "_variable" :: "'a"
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   199
  "_noargs" :: "'a"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   200
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   201
translations
29322
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   202
  "_Case1 p r" => "CONST branch (_pat p)\<cdot>(_variable p r)"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   203
  "_variable (_args x y) r" => "CONST csplit\<cdot>(_variable x (_variable y r))"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   204
  "_variable _noargs r" => "CONST unit_when\<cdot>r"
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   205
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   206
parse_translation {*
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   207
(* rewrite (_pat x) => (return) *)
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   208
(* rewrite (_variable x t) => (Abs_CFun (%x. t)) *)
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   209
 [(@{syntax_const "_pat"}, fn _ => Syntax.const @{const_syntax Fixrec.return}),
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   210
  mk_binder_tr (@{syntax_const "_variable"}, @{const_syntax Abs_CFun})];
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   211
*}
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   212
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   213
text {* Printing Case expressions *}
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   214
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   215
syntax
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   216
  "_match" :: "'a"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   217
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   218
print_translation {*
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   219
  let
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   220
    fun dest_LAM (Const (@{const_syntax Rep_CFun},_) $ Const (@{const_syntax unit_when},_) $ t) =
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   221
          (Syntax.const @{syntax_const "_noargs"}, t)
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   222
    |   dest_LAM (Const (@{const_syntax Rep_CFun},_) $ Const (@{const_syntax csplit},_) $ t) =
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   223
          let
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   224
            val (v1, t1) = dest_LAM t;
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   225
            val (v2, t2) = dest_LAM t1;
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   226
          in (Syntax.const @{syntax_const "_args"} $ v1 $ v2, t2) end
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   227
    |   dest_LAM (Const (@{const_syntax Abs_CFun},_) $ t) =
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   228
          let
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   229
            val abs =
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   230
              case t of Abs abs => abs
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   231
                | _ => ("x", dummyT, incr_boundvars 1 t $ Bound 0);
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   232
            val (x, t') = atomic_abs_tr' abs;
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   233
          in (Syntax.const @{syntax_const "_variable"} $ x, t') end
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   234
    |   dest_LAM _ = raise Match; (* too few vars: abort translation *)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   235
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   236
    fun Case1_tr' [Const(@{const_syntax branch},_) $ p, r] =
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   237
          let val (v, t) = dest_LAM r in
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   238
            Syntax.const @{syntax_const "_Case1"} $
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   239
              (Syntax.const @{syntax_const "_match"} $ p $ v) $ t
446c5063e4fd modernized translations;
wenzelm
parents: 33429
diff changeset
   240
          end;
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   241
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   242
  in [(@{const_syntax Rep_CFun}, Case1_tr')] end;
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   243
*}
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   244
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   245
translations
35469
6e59de61d501 fix output translation for Case syntax
huffman
parents: 35115
diff changeset
   246
  "x" <= "_match (CONST Fixrec.return) (_variable x)"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   247
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   248
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   249
subsection {* Pattern combinators for data constructors *}
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   250
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   251
types ('a, 'b) pat = "'a \<rightarrow> 'b maybe"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   252
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   253
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   254
  cpair_pat :: "('a, 'c) pat \<Rightarrow> ('b, 'd) pat \<Rightarrow> ('a \<times> 'b, 'c \<times> 'd) pat" where
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   255
  "cpair_pat p1 p2 = (\<Lambda>(x, y).
36998
9316a18ec931 remove unnecessary constant Fixrec.bind
huffman
parents: 36452
diff changeset
   256
    maybe_when\<cdot>fail\<cdot>(\<Lambda> a. maybe_when\<cdot>fail\<cdot>(\<Lambda> b. return\<cdot>(a, b))\<cdot>(p2\<cdot>y))\<cdot>(p1\<cdot>x))"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   257
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   258
definition
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   259
  spair_pat ::
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   260
  "('a, 'c) pat \<Rightarrow> ('b, 'd) pat \<Rightarrow> ('a::pcpo \<otimes> 'b::pcpo, 'c \<times> 'd) pat" where
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   261
  "spair_pat p1 p2 = (\<Lambda>(:x, y:). cpair_pat p1 p2\<cdot>(x, y))"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   262
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   263
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   264
  sinl_pat :: "('a, 'c) pat \<Rightarrow> ('a::pcpo \<oplus> 'b::pcpo, 'c) pat" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   265
  "sinl_pat p = sscase\<cdot>p\<cdot>(\<Lambda> x. fail)"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   266
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   267
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   268
  sinr_pat :: "('b, 'c) pat \<Rightarrow> ('a::pcpo \<oplus> 'b::pcpo, 'c) pat" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   269
  "sinr_pat p = sscase\<cdot>(\<Lambda> x. fail)\<cdot>p"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   270
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   271
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   272
  up_pat :: "('a, 'b) pat \<Rightarrow> ('a u, 'b) pat" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   273
  "up_pat p = fup\<cdot>p"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   274
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   275
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   276
  TT_pat :: "(tr, unit) pat" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   277
  "TT_pat = (\<Lambda> b. If b then return\<cdot>() else fail fi)"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   278
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   279
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   280
  FF_pat :: "(tr, unit) pat" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   281
  "FF_pat = (\<Lambda> b. If b then fail else return\<cdot>() fi)"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   282
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   283
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   284
  ONE_pat :: "(one, unit) pat" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   285
  "ONE_pat = (\<Lambda> ONE. return\<cdot>())"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   286
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   287
text {* Parse translations (patterns) *}
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   288
translations
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   289
  "_pat (XCONST Pair x y)" => "CONST cpair_pat (_pat x) (_pat y)"
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   290
  "_pat (XCONST spair\<cdot>x\<cdot>y)" => "CONST spair_pat (_pat x) (_pat y)"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   291
  "_pat (XCONST sinl\<cdot>x)" => "CONST sinl_pat (_pat x)"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   292
  "_pat (XCONST sinr\<cdot>x)" => "CONST sinr_pat (_pat x)"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   293
  "_pat (XCONST up\<cdot>x)" => "CONST up_pat (_pat x)"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   294
  "_pat (XCONST TT)" => "CONST TT_pat"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   295
  "_pat (XCONST FF)" => "CONST FF_pat"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   296
  "_pat (XCONST ONE)" => "CONST ONE_pat"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   297
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   298
text {* CONST version is also needed for constructors with special syntax *}
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   299
translations
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   300
  "_pat (CONST Pair x y)" => "CONST cpair_pat (_pat x) (_pat y)"
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   301
  "_pat (CONST spair\<cdot>x\<cdot>y)" => "CONST spair_pat (_pat x) (_pat y)"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   302
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   303
text {* Parse translations (variables) *}
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   304
translations
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   305
  "_variable (XCONST Pair x y) r" => "_variable (_args x y) r"
29322
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   306
  "_variable (XCONST spair\<cdot>x\<cdot>y) r" => "_variable (_args x y) r"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   307
  "_variable (XCONST sinl\<cdot>x) r" => "_variable x r"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   308
  "_variable (XCONST sinr\<cdot>x) r" => "_variable x r"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   309
  "_variable (XCONST up\<cdot>x) r" => "_variable x r"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   310
  "_variable (XCONST TT) r" => "_variable _noargs r"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   311
  "_variable (XCONST FF) r" => "_variable _noargs r"
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   312
  "_variable (XCONST ONE) r" => "_variable _noargs r"
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   313
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   314
translations
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   315
  "_variable (CONST Pair x y) r" => "_variable (_args x y) r"
29322
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   316
  "_variable (CONST spair\<cdot>x\<cdot>y) r" => "_variable (_args x y) r"
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   317
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   318
text {* Print translations *}
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   319
translations
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   320
  "CONST Pair (_match p1 v1) (_match p2 v2)"
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   321
      <= "_match (CONST cpair_pat p1 p2) (_args v1 v2)"
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   322
  "CONST spair\<cdot>(_match p1 v1)\<cdot>(_match p2 v2)"
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   323
      <= "_match (CONST spair_pat p1 p2) (_args v1 v2)"
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   324
  "CONST sinl\<cdot>(_match p1 v1)" <= "_match (CONST sinl_pat p1) v1"
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   325
  "CONST sinr\<cdot>(_match p1 v1)" <= "_match (CONST sinr_pat p1) v1"
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   326
  "CONST up\<cdot>(_match p1 v1)" <= "_match (CONST up_pat p1) v1"
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   327
  "CONST TT" <= "_match (CONST TT_pat) _noargs"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   328
  "CONST FF" <= "_match (CONST FF_pat) _noargs"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   329
  "CONST ONE" <= "_match (CONST ONE_pat) _noargs"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   330
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   331
lemma cpair_pat1:
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   332
  "branch p\<cdot>r\<cdot>x = \<bottom> \<Longrightarrow> branch (cpair_pat p q)\<cdot>(csplit\<cdot>r)\<cdot>(x, y) = \<bottom>"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   333
apply (simp add: branch_def cpair_pat_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   334
apply (rule_tac p="p\<cdot>x" in maybeE, simp_all)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   335
done
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   336
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   337
lemma cpair_pat2:
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   338
  "branch p\<cdot>r\<cdot>x = fail \<Longrightarrow> branch (cpair_pat p q)\<cdot>(csplit\<cdot>r)\<cdot>(x, y) = fail"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   339
apply (simp add: branch_def cpair_pat_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   340
apply (rule_tac p="p\<cdot>x" in maybeE, simp_all)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   341
done
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   342
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   343
lemma cpair_pat3:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   344
  "branch p\<cdot>r\<cdot>x = return\<cdot>s \<Longrightarrow>
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   345
   branch (cpair_pat p q)\<cdot>(csplit\<cdot>r)\<cdot>(x, y) = branch q\<cdot>s\<cdot>y"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   346
apply (simp add: branch_def cpair_pat_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   347
apply (rule_tac p="p\<cdot>x" in maybeE, simp_all)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   348
apply (rule_tac p="q\<cdot>y" in maybeE, simp_all)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   349
done
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   350
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   351
lemmas cpair_pat [simp] =
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   352
  cpair_pat1 cpair_pat2 cpair_pat3
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   353
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   354
lemma spair_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   355
  "branch (spair_pat p1 p2)\<cdot>r\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   356
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk>
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   357
     \<Longrightarrow> branch (spair_pat p1 p2)\<cdot>r\<cdot>(:x, y:) =
35926
e6aec5d665f0 completely remove constants cpair, cfst, csnd
huffman
parents: 35920
diff changeset
   358
         branch (cpair_pat p1 p2)\<cdot>r\<cdot>(x, y)"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   359
by (simp_all add: branch_def spair_pat_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   360
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   361
lemma sinl_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   362
  "branch (sinl_pat p)\<cdot>r\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   363
  "x \<noteq> \<bottom> \<Longrightarrow> branch (sinl_pat p)\<cdot>r\<cdot>(sinl\<cdot>x) = branch p\<cdot>r\<cdot>x"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   364
  "y \<noteq> \<bottom> \<Longrightarrow> branch (sinl_pat p)\<cdot>r\<cdot>(sinr\<cdot>y) = fail"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   365
by (simp_all add: branch_def sinl_pat_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   366
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   367
lemma sinr_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   368
  "branch (sinr_pat p)\<cdot>r\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   369
  "x \<noteq> \<bottom> \<Longrightarrow> branch (sinr_pat p)\<cdot>r\<cdot>(sinl\<cdot>x) = fail"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   370
  "y \<noteq> \<bottom> \<Longrightarrow> branch (sinr_pat p)\<cdot>r\<cdot>(sinr\<cdot>y) = branch p\<cdot>r\<cdot>y"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   371
by (simp_all add: branch_def sinr_pat_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   372
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   373
lemma up_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   374
  "branch (up_pat p)\<cdot>r\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   375
  "branch (up_pat p)\<cdot>r\<cdot>(up\<cdot>x) = branch p\<cdot>r\<cdot>x"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   376
by (simp_all add: branch_def up_pat_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   377
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   378
lemma TT_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   379
  "branch TT_pat\<cdot>(unit_when\<cdot>r)\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   380
  "branch TT_pat\<cdot>(unit_when\<cdot>r)\<cdot>TT = return\<cdot>r"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   381
  "branch TT_pat\<cdot>(unit_when\<cdot>r)\<cdot>FF = fail"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   382
by (simp_all add: branch_def TT_pat_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   383
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   384
lemma FF_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   385
  "branch FF_pat\<cdot>(unit_when\<cdot>r)\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   386
  "branch FF_pat\<cdot>(unit_when\<cdot>r)\<cdot>TT = fail"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   387
  "branch FF_pat\<cdot>(unit_when\<cdot>r)\<cdot>FF = return\<cdot>r"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   388
by (simp_all add: branch_def FF_pat_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   389
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   390
lemma ONE_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   391
  "branch ONE_pat\<cdot>(unit_when\<cdot>r)\<cdot>\<bottom> = \<bottom>"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   392
  "branch ONE_pat\<cdot>(unit_when\<cdot>r)\<cdot>ONE = return\<cdot>r"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   393
by (simp_all add: branch_def ONE_pat_def)
18097
d196d84c306f add case syntax stuff
huffman
parents: 18096
diff changeset
   394
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   395
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   396
subsection {* Wildcards, as-patterns, and lazy patterns *}
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   397
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   398
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   399
  wild_pat :: "'a \<rightarrow> unit maybe" where
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   400
  "wild_pat = (\<Lambda> x. return\<cdot>())"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   401
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   402
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   403
  as_pat :: "('a \<rightarrow> 'b maybe) \<Rightarrow> 'a \<rightarrow> ('a \<times> 'b) maybe" where
36998
9316a18ec931 remove unnecessary constant Fixrec.bind
huffman
parents: 36452
diff changeset
   404
  "as_pat p = (\<Lambda> x. maybe_when\<cdot>fail\<cdot>(\<Lambda> a. return\<cdot>(x, a))\<cdot>(p\<cdot>x))"
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   405
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   406
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   407
  lazy_pat :: "('a \<rightarrow> 'b::pcpo maybe) \<Rightarrow> ('a \<rightarrow> 'b maybe)" where
28891
f199def7a6a5 separate run and cases combinators
huffman
parents: 26046
diff changeset
   408
  "lazy_pat p = (\<Lambda> x. return\<cdot>(cases\<cdot>(p\<cdot>x)))"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   409
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   410
text {* Parse translations (patterns) *}
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   411
translations
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   412
  "_pat _" => "CONST wild_pat"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   413
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   414
text {* Parse translations (variables) *}
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   415
translations
29322
ae6f2b1559fa renamed syntax constant "_var" to "_variable", to avoid clash with internal token marker;
wenzelm
parents: 29141
diff changeset
   416
  "_variable _ r" => "_variable _noargs r"
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   417
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   418
text {* Print translations *}
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   419
translations
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25158
diff changeset
   420
  "_" <= "_match (CONST wild_pat) _noargs"
19327
4565e230e6eb lazy patterns in lambda abstractions
huffman
parents: 19104
diff changeset
   421
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   422
lemma wild_pat [simp]: "branch wild_pat\<cdot>(unit_when\<cdot>r)\<cdot>x = return\<cdot>r"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   423
by (simp add: branch_def wild_pat_def)
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   424
18293
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   425
lemma as_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   426
  "branch (as_pat p)\<cdot>(csplit\<cdot>r)\<cdot>x = branch p\<cdot>(r\<cdot>x)\<cdot>x"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   427
apply (simp add: branch_def as_pat_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   428
apply (rule_tac p="p\<cdot>x" in maybeE, simp_all)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   429
done
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   430
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   431
lemma lazy_pat [simp]:
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   432
  "branch p\<cdot>r\<cdot>x = \<bottom> \<Longrightarrow> branch (lazy_pat p)\<cdot>r\<cdot>x = return\<cdot>(r\<cdot>\<bottom>)"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   433
  "branch p\<cdot>r\<cdot>x = fail \<Longrightarrow> branch (lazy_pat p)\<cdot>r\<cdot>x = return\<cdot>(r\<cdot>\<bottom>)"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   434
  "branch p\<cdot>r\<cdot>x = return\<cdot>s \<Longrightarrow> branch (lazy_pat p)\<cdot>r\<cdot>x = return\<cdot>s"
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   435
apply (simp_all add: branch_def lazy_pat_def)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   436
apply (rule_tac [!] p="p\<cdot>x" in maybeE, simp_all)
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   437
done
4eaa654c92f2 reimplement Case expression pattern matching to support lazy patterns
huffman
parents: 18112
diff changeset
   438
18112
dc1d6f588204 reimplemented Case syntax using print/parse translations; moved as-patterns to separate section
huffman
parents: 18110
diff changeset
   439
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   440
subsection {* Match functions for built-in types *}
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   441
36452
d37c6eed8117 renamed command 'defaultsort' to 'default_sort';
wenzelm
parents: 36176
diff changeset
   442
default_sort pcpo
16776
a3899ac14a1c generalized types of monadic operators to class cpo; added match function for UU
huffman
parents: 16758
diff changeset
   443
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   444
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   445
  match_UU :: "'a \<rightarrow> 'c maybe \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   446
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   447
  "match_UU = strictify\<cdot>(\<Lambda> x k. fail)"
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   448
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   449
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   450
  match_cpair :: "'a::cpo \<times> 'b::cpo \<rightarrow> ('a \<rightarrow> 'b \<rightarrow> 'c maybe) \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   451
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   452
  "match_cpair = (\<Lambda> x k. csplit\<cdot>k\<cdot>x)"
16776
a3899ac14a1c generalized types of monadic operators to class cpo; added match function for UU
huffman
parents: 16758
diff changeset
   453
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   454
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   455
  match_spair :: "'a \<otimes> 'b \<rightarrow> ('a \<rightarrow> 'b \<rightarrow> 'c maybe) \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   456
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   457
  "match_spair = (\<Lambda> x k. ssplit\<cdot>k\<cdot>x)"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   458
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   459
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   460
  match_sinl :: "'a \<oplus> 'b \<rightarrow> ('a \<rightarrow> 'c maybe) \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   461
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   462
  "match_sinl = (\<Lambda> x k. sscase\<cdot>k\<cdot>(\<Lambda> b. fail)\<cdot>x)"
16551
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   463
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   464
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   465
  match_sinr :: "'a \<oplus> 'b \<rightarrow> ('b \<rightarrow> 'c maybe) \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   466
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   467
  "match_sinr = (\<Lambda> x k. sscase\<cdot>(\<Lambda> a. fail)\<cdot>k\<cdot>x)"
16551
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   468
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   469
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   470
  match_up :: "'a::cpo u \<rightarrow> ('a \<rightarrow> 'c maybe) \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   471
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   472
  "match_up = (\<Lambda> x k. fup\<cdot>k\<cdot>x)"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   473
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   474
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   475
  match_ONE :: "one \<rightarrow> 'c maybe \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   476
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   477
  "match_ONE = (\<Lambda> ONE k. k)"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   478
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   479
definition
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   480
  match_TT :: "tr \<rightarrow> 'c maybe \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   481
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   482
  "match_TT = (\<Lambda> x k. If x then k else fail fi)"
18094
404f298220af simplify definitions
huffman
parents: 16779
diff changeset
   483
 
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 23152
diff changeset
   484
definition
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   485
  match_FF :: "tr \<rightarrow> 'c maybe \<rightarrow> 'c maybe"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   486
where
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   487
  "match_FF = (\<Lambda> x k. If x then fail else k fi)"
16460
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   488
16776
a3899ac14a1c generalized types of monadic operators to class cpo; added match function for UU
huffman
parents: 16758
diff changeset
   489
lemma match_UU_simps [simp]:
31008
b8f4e351b5bf add proper support for bottom-patterns in fixrec package
huffman
parents: 30914
diff changeset
   490
  "match_UU\<cdot>\<bottom>\<cdot>k = \<bottom>"
b8f4e351b5bf add proper support for bottom-patterns in fixrec package
huffman
parents: 30914
diff changeset
   491
  "x \<noteq> \<bottom> \<Longrightarrow> match_UU\<cdot>x\<cdot>k = fail"
b8f4e351b5bf add proper support for bottom-patterns in fixrec package
huffman
parents: 30914
diff changeset
   492
by (simp_all add: match_UU_def)
16776
a3899ac14a1c generalized types of monadic operators to class cpo; added match function for UU
huffman
parents: 16758
diff changeset
   493
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   494
lemma match_cpair_simps [simp]:
33401
fc43fa403a69 add fixrec support for HOL pair constructor patterns
huffman
parents: 31738
diff changeset
   495
  "match_cpair\<cdot>(x, y)\<cdot>k = k\<cdot>x\<cdot>y"
fc43fa403a69 add fixrec support for HOL pair constructor patterns
huffman
parents: 31738
diff changeset
   496
by (simp_all add: match_cpair_def)
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   497
16551
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   498
lemma match_spair_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   499
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> match_spair\<cdot>(:x, y:)\<cdot>k = k\<cdot>x\<cdot>y"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   500
  "match_spair\<cdot>\<bottom>\<cdot>k = \<bottom>"
16551
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   501
by (simp_all add: match_spair_def)
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   502
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   503
lemma match_sinl_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   504
  "x \<noteq> \<bottom> \<Longrightarrow> match_sinl\<cdot>(sinl\<cdot>x)\<cdot>k = k\<cdot>x"
30914
ceeb5f2eac75 fix too-specific types in lemmas match_{sinl,sinr}_simps
huffman
parents: 30912
diff changeset
   505
  "y \<noteq> \<bottom> \<Longrightarrow> match_sinl\<cdot>(sinr\<cdot>y)\<cdot>k = fail"
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   506
  "match_sinl\<cdot>\<bottom>\<cdot>k = \<bottom>"
16551
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   507
by (simp_all add: match_sinl_def)
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   508
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   509
lemma match_sinr_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   510
  "x \<noteq> \<bottom> \<Longrightarrow> match_sinr\<cdot>(sinl\<cdot>x)\<cdot>k = fail"
30914
ceeb5f2eac75 fix too-specific types in lemmas match_{sinl,sinr}_simps
huffman
parents: 30912
diff changeset
   511
  "y \<noteq> \<bottom> \<Longrightarrow> match_sinr\<cdot>(sinr\<cdot>y)\<cdot>k = k\<cdot>y"
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   512
  "match_sinr\<cdot>\<bottom>\<cdot>k = \<bottom>"
16551
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   513
by (simp_all add: match_sinr_def)
7abf8a713613 added match functions for spair, sinl, sinr
huffman
parents: 16463
diff changeset
   514
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   515
lemma match_up_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   516
  "match_up\<cdot>(up\<cdot>x)\<cdot>k = k\<cdot>x"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   517
  "match_up\<cdot>\<bottom>\<cdot>k = \<bottom>"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   518
by (simp_all add: match_up_def)
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   519
16460
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   520
lemma match_ONE_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   521
  "match_ONE\<cdot>ONE\<cdot>k = k"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   522
  "match_ONE\<cdot>\<bottom>\<cdot>k = \<bottom>"
18094
404f298220af simplify definitions
huffman
parents: 16779
diff changeset
   523
by (simp_all add: match_ONE_def)
16460
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   524
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   525
lemma match_TT_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   526
  "match_TT\<cdot>TT\<cdot>k = k"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   527
  "match_TT\<cdot>FF\<cdot>k = fail"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   528
  "match_TT\<cdot>\<bottom>\<cdot>k = \<bottom>"
18094
404f298220af simplify definitions
huffman
parents: 16779
diff changeset
   529
by (simp_all add: match_TT_def)
16460
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   530
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   531
lemma match_FF_simps [simp]:
30912
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   532
  "match_FF\<cdot>FF\<cdot>k = k"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   533
  "match_FF\<cdot>TT\<cdot>k = fail"
4022298c1a86 change definition of match combinators for fixrec package
huffman
parents: 30131
diff changeset
   534
  "match_FF\<cdot>\<bottom>\<cdot>k = \<bottom>"
18094
404f298220af simplify definitions
huffman
parents: 16779
diff changeset
   535
by (simp_all add: match_FF_def)
16460
72a08d509d62 added match functions for ONE, TT, and FF; added theorem mplus_fail2
huffman
parents: 16417
diff changeset
   536
16401
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   537
subsection {* Mutual recursion *}
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   538
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   539
text {*
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   540
  The following rules are used to prove unfolding theorems from
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   541
  fixed-point definitions of mutually recursive functions.
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   542
*}
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   543
31095
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   544
lemma Pair_equalI: "\<lbrakk>x \<equiv> fst p; y \<equiv> snd p\<rbrakk> \<Longrightarrow> (x, y) \<equiv> p"
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   545
by simp
16401
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   546
31095
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   547
lemma Pair_eqD1: "(x, y) = (x', y') \<Longrightarrow> x = x'"
16401
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   548
by simp
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   549
31095
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   550
lemma Pair_eqD2: "(x, y) = (x', y') \<Longrightarrow> y = y'"
16401
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   551
by simp
57c35ede00b9 fixrec package now handles mutually-recursive definitions
huffman
parents: 16229
diff changeset
   552
31095
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   553
lemma def_cont_fix_eq:
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   554
  "\<lbrakk>f \<equiv> fix\<cdot>(Abs_CFun F); cont F\<rbrakk> \<Longrightarrow> f = F f"
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   555
by (simp, subst fix_eq, simp)
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   556
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   557
lemma def_cont_fix_ind:
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   558
  "\<lbrakk>f \<equiv> fix\<cdot>(Abs_CFun F); cont F; adm P; P \<bottom>; \<And>x. P x \<Longrightarrow> P (F x)\<rbrakk> \<Longrightarrow> P f"
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   559
by (simp add: fix_ind)
b79d140f6d0b simplify fixrec proofs for mutually-recursive definitions; generate better fixpoint induction rules
huffman
parents: 31008
diff changeset
   560
16463
342d74ca8815 fixrec shows unsolved subgoals when proofs of rewrites fail
huffman
parents: 16460
diff changeset
   561
text {* lemma for proving rewrite rules *}
342d74ca8815 fixrec shows unsolved subgoals when proofs of rewrites fail
huffman
parents: 16460
diff changeset
   562
342d74ca8815 fixrec shows unsolved subgoals when proofs of rewrites fail
huffman
parents: 16460
diff changeset
   563
lemma ssubst_lhs: "\<lbrakk>t = s; P s = Q\<rbrakk> \<Longrightarrow> P t = Q"
342d74ca8815 fixrec shows unsolved subgoals when proofs of rewrites fail
huffman
parents: 16460
diff changeset
   564
by simp
342d74ca8815 fixrec shows unsolved subgoals when proofs of rewrites fail
huffman
parents: 16460
diff changeset
   565
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   566
16758
c32334d98fcd fix typo
huffman
parents: 16754
diff changeset
   567
subsection {* Initializing the fixrec package *}
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   568
35527
f4282471461d fixrec and repdef modules import holcf_library
huffman
parents: 35469
diff changeset
   569
use "Tools/holcf_library.ML"
31738
7b9b9ba532ca discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31095
diff changeset
   570
use "Tools/fixrec.ML"
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   571
31738
7b9b9ba532ca discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31095
diff changeset
   572
setup {* Fixrec.setup *}
30131
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   573
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   574
setup {*
31738
7b9b9ba532ca discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31095
diff changeset
   575
  Fixrec.add_matchers
30131
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   576
    [ (@{const_name up}, @{const_name match_up}),
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   577
      (@{const_name sinl}, @{const_name match_sinl}),
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   578
      (@{const_name sinr}, @{const_name match_sinr}),
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   579
      (@{const_name spair}, @{const_name match_spair}),
33401
fc43fa403a69 add fixrec support for HOL pair constructor patterns
huffman
parents: 31738
diff changeset
   580
      (@{const_name Pair}, @{const_name match_cpair}),
30131
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   581
      (@{const_name ONE}, @{const_name match_ONE}),
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   582
      (@{const_name TT}, @{const_name match_TT}),
31008
b8f4e351b5bf add proper support for bottom-patterns in fixrec package
huffman
parents: 30914
diff changeset
   583
      (@{const_name FF}, @{const_name match_FF}),
b8f4e351b5bf add proper support for bottom-patterns in fixrec package
huffman
parents: 30914
diff changeset
   584
      (@{const_name UU}, @{const_name match_UU}) ]
30131
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   585
*}
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29530
diff changeset
   586
36998
9316a18ec931 remove unnecessary constant Fixrec.bind
huffman
parents: 36452
diff changeset
   587
hide_const (open) return fail run cases
19104
7d69b6d7b8f1 use qualified name for return
huffman
parents: 19092
diff changeset
   588
33425
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   589
lemmas [fixrec_simp] =
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   590
  run_strict run_fail run_return
33429
42d7b6b4992b add more fixrec_simp rules
huffman
parents: 33425
diff changeset
   591
  mplus_strict mplus_fail mplus_return
33425
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   592
  spair_strict_iff
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   593
  sinl_defined_iff
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   594
  sinr_defined_iff
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   595
  up_defined
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   596
  ONE_defined
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   597
  dist_eq_tr(1,2)
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   598
  match_UU_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   599
  match_cpair_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   600
  match_spair_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   601
  match_sinl_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   602
  match_sinr_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   603
  match_up_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   604
  match_ONE_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   605
  match_TT_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   606
  match_FF_simps
7e4f3c66190d add fixrec_simp attribute and method (eventually to replace fixpat)
huffman
parents: 33401
diff changeset
   607
16221
879400e029bf New theory with lemmas for the fixrec package
huffman
parents:
diff changeset
   608
end