src/HOLCF/Library/Sum_Cpo.thy
author huffman
Sat, 27 Nov 2010 13:12:10 -0800
changeset 40771 1c6f7d4b110e
parent 40496 71283f31a27f
permissions -rw-r--r--
renamed several HOLCF theorems (listed in NEWS)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29534
247e4c816004 rename Dsum.thy to Sum_Cpo.thy
huffman
parents: 29130
diff changeset
     1
(*  Title:      HOLCF/Sum_Cpo.thy
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
     2
    Author:     Brian Huffman
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
     3
*)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
     4
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
     5
header {* The cpo of disjoint sums *}
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
     6
29534
247e4c816004 rename Dsum.thy to Sum_Cpo.thy
huffman
parents: 29130
diff changeset
     7
theory Sum_Cpo
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39808
diff changeset
     8
imports HOLCF
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
     9
begin
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    10
35900
aa5dfb03eb1e remove LaTeX hyperref warnings by avoiding antiquotations within section headings
huffman
parents: 31076
diff changeset
    11
subsection {* Ordering on sum type *}
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    12
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37111
diff changeset
    13
instantiation sum :: (below, below) below
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    14
begin
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    15
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    16
definition below_sum_def:
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    17
  "x \<sqsubseteq> y \<equiv> case x of
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    18
         Inl a \<Rightarrow> (case y of Inl b \<Rightarrow> a \<sqsubseteq> b | Inr b \<Rightarrow> False) |
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    19
         Inr a \<Rightarrow> (case y of Inl b \<Rightarrow> False | Inr b \<Rightarrow> a \<sqsubseteq> b)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    20
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    21
instance ..
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    22
end
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    23
40436
adb22dbb5242 (infixl "<<" 55) -> (infix "<<" 50)
huffman
parents: 40089
diff changeset
    24
lemma Inl_below_Inl [simp]: "Inl x \<sqsubseteq> Inl y \<longleftrightarrow> x \<sqsubseteq> y"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    25
unfolding below_sum_def by simp
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    26
40436
adb22dbb5242 (infixl "<<" 55) -> (infix "<<" 50)
huffman
parents: 40089
diff changeset
    27
lemma Inr_below_Inr [simp]: "Inr x \<sqsubseteq> Inr y \<longleftrightarrow> x \<sqsubseteq> y"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    28
unfolding below_sum_def by simp
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    29
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    30
lemma Inl_below_Inr [simp]: "\<not> Inl x \<sqsubseteq> Inr y"
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    31
unfolding below_sum_def by simp
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    32
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    33
lemma Inr_below_Inl [simp]: "\<not> Inr x \<sqsubseteq> Inl y"
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    34
unfolding below_sum_def by simp
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    35
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    36
lemma Inl_mono: "x \<sqsubseteq> y \<Longrightarrow> Inl x \<sqsubseteq> Inl y"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    37
by simp
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    38
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    39
lemma Inr_mono: "x \<sqsubseteq> y \<Longrightarrow> Inr x \<sqsubseteq> Inr y"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    40
by simp
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    41
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    42
lemma Inl_belowE: "\<lbrakk>Inl a \<sqsubseteq> x; \<And>b. \<lbrakk>x = Inl b; a \<sqsubseteq> b\<rbrakk> \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R"
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    43
by (cases x, simp_all)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    44
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    45
lemma Inr_belowE: "\<lbrakk>Inr a \<sqsubseteq> x; \<And>b. \<lbrakk>x = Inr b; a \<sqsubseteq> b\<rbrakk> \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R"
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    46
by (cases x, simp_all)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    47
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    48
lemmas sum_below_elims = Inl_belowE Inr_belowE
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    49
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    50
lemma sum_below_cases:
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    51
  "\<lbrakk>x \<sqsubseteq> y;
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    52
    \<And>a b. \<lbrakk>x = Inl a; y = Inl b; a \<sqsubseteq> b\<rbrakk> \<Longrightarrow> R;
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    53
    \<And>a b. \<lbrakk>x = Inr a; y = Inr b; a \<sqsubseteq> b\<rbrakk> \<Longrightarrow> R\<rbrakk>
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    54
      \<Longrightarrow> R"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    55
by (cases x, safe elim!: sum_below_elims, auto)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    56
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    57
subsection {* Sum type is a complete partial order *}
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    58
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37111
diff changeset
    59
instance sum :: (po, po) po
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    60
proof
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    61
  fix x :: "'a + 'b"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    62
  show "x \<sqsubseteq> x"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    63
    by (induct x, simp_all)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    64
next
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    65
  fix x y :: "'a + 'b"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    66
  assume "x \<sqsubseteq> y" and "y \<sqsubseteq> x" thus "x = y"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    67
    by (induct x, auto elim!: sum_below_elims intro: below_antisym)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    68
next
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    69
  fix x y z :: "'a + 'b"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    70
  assume "x \<sqsubseteq> y" and "y \<sqsubseteq> z" thus "x \<sqsubseteq> z"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    71
    by (induct x, auto elim!: sum_below_elims intro: below_trans)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    72
qed
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    73
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    74
lemma monofun_inv_Inl: "monofun (\<lambda>p. THE a. p = Inl a)"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    75
by (rule monofunI, erule sum_below_cases, simp_all)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    76
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    77
lemma monofun_inv_Inr: "monofun (\<lambda>p. THE b. p = Inr b)"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    78
by (rule monofunI, erule sum_below_cases, simp_all)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    79
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    80
lemma sum_chain_cases:
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    81
  assumes Y: "chain Y"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    82
  assumes A: "\<And>A. \<lbrakk>chain A; Y = (\<lambda>i. Inl (A i))\<rbrakk> \<Longrightarrow> R"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    83
  assumes B: "\<And>B. \<lbrakk>chain B; Y = (\<lambda>i. Inr (B i))\<rbrakk> \<Longrightarrow> R"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    84
  shows "R"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    85
 apply (cases "Y 0")
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    86
  apply (rule A)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    87
   apply (rule ch2ch_monofun [OF monofun_inv_Inl Y])
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    88
  apply (rule ext)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    89
  apply (cut_tac j=i in chain_mono [OF Y le0], simp)
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    90
  apply (erule Inl_belowE, simp)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    91
 apply (rule B)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    92
  apply (rule ch2ch_monofun [OF monofun_inv_Inr Y])
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    93
 apply (rule ext)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    94
 apply (cut_tac j=i in chain_mono [OF Y le0], simp)
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
    95
 apply (erule Inr_belowE, simp)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    96
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    97
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    98
lemma is_lub_Inl: "range S <<| x \<Longrightarrow> range (\<lambda>i. Inl (S i)) <<| Inl x"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
    99
 apply (rule is_lubI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   100
  apply (rule ub_rangeI)
40771
1c6f7d4b110e renamed several HOLCF theorems (listed in NEWS)
huffman
parents: 40496
diff changeset
   101
  apply (simp add: is_lub_rangeD1)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   102
 apply (frule ub_rangeD [where i=arbitrary])
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
   103
 apply (erule Inl_belowE, simp)
40771
1c6f7d4b110e renamed several HOLCF theorems (listed in NEWS)
huffman
parents: 40496
diff changeset
   104
 apply (erule is_lubD2)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   105
 apply (rule ub_rangeI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   106
 apply (drule ub_rangeD, simp)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   107
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   108
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   109
lemma is_lub_Inr: "range S <<| x \<Longrightarrow> range (\<lambda>i. Inr (S i)) <<| Inr x"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   110
 apply (rule is_lubI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   111
  apply (rule ub_rangeI)
40771
1c6f7d4b110e renamed several HOLCF theorems (listed in NEWS)
huffman
parents: 40496
diff changeset
   112
  apply (simp add: is_lub_rangeD1)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   113
 apply (frule ub_rangeD [where i=arbitrary])
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
   114
 apply (erule Inr_belowE, simp)
40771
1c6f7d4b110e renamed several HOLCF theorems (listed in NEWS)
huffman
parents: 40496
diff changeset
   115
 apply (erule is_lubD2)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   116
 apply (rule ub_rangeI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   117
 apply (drule ub_rangeD, simp)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   118
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   119
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37111
diff changeset
   120
instance sum :: (cpo, cpo) cpo
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   121
 apply intro_classes
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   122
 apply (erule sum_chain_cases, safe)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   123
  apply (rule exI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   124
  apply (rule is_lub_Inl)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   125
  apply (erule cpo_lubI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   126
 apply (rule exI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   127
 apply (rule is_lub_Inr)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   128
 apply (erule cpo_lubI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   129
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   130
35900
aa5dfb03eb1e remove LaTeX hyperref warnings by avoiding antiquotations within section headings
huffman
parents: 31076
diff changeset
   131
subsection {* Continuity of \emph{Inl}, \emph{Inr}, and case function *}
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   132
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   133
lemma cont_Inl: "cont Inl"
31041
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   134
by (intro contI is_lub_Inl cpo_lubI)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   135
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   136
lemma cont_Inr: "cont Inr"
31041
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   137
by (intro contI is_lub_Inr cpo_lubI)
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   138
37079
0cd15d8c90a0 remove cont2cont simproc; instead declare cont2cont rules as simp rules
huffman
parents: 35900
diff changeset
   139
lemmas cont2cont_Inl [simp, cont2cont] = cont_compose [OF cont_Inl]
0cd15d8c90a0 remove cont2cont simproc; instead declare cont2cont rules as simp rules
huffman
parents: 35900
diff changeset
   140
lemmas cont2cont_Inr [simp, cont2cont] = cont_compose [OF cont_Inr]
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   141
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   142
lemmas ch2ch_Inl [simp] = ch2ch_cont [OF cont_Inl]
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   143
lemmas ch2ch_Inr [simp] = ch2ch_cont [OF cont_Inr]
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   144
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   145
lemmas lub_Inl = cont2contlubE [OF cont_Inl, symmetric]
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   146
lemmas lub_Inr = cont2contlubE [OF cont_Inr, symmetric]
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   147
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   148
lemma cont_sum_case1:
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   149
  assumes f: "\<And>a. cont (\<lambda>x. f x a)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   150
  assumes g: "\<And>b. cont (\<lambda>x. g x b)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   151
  shows "cont (\<lambda>x. case y of Inl a \<Rightarrow> f x a | Inr b \<Rightarrow> g x b)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   152
by (induct y, simp add: f, simp add: g)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   153
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   154
lemma cont_sum_case2: "\<lbrakk>cont f; cont g\<rbrakk> \<Longrightarrow> cont (sum_case f g)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   155
apply (rule contI)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   156
apply (erule sum_chain_cases)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   157
apply (simp add: cont2contlubE [OF cont_Inl, symmetric] contE)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   158
apply (simp add: cont2contlubE [OF cont_Inr, symmetric] contE)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   159
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   160
31041
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   161
lemma cont2cont_sum_case:
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   162
  assumes f1: "\<And>a. cont (\<lambda>x. f x a)" and f2: "\<And>x. cont (\<lambda>a. f x a)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   163
  assumes g1: "\<And>b. cont (\<lambda>x. g x b)" and g2: "\<And>x. cont (\<lambda>b. g x b)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   164
  assumes h: "cont (\<lambda>x. h x)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   165
  shows "cont (\<lambda>x. case h x of Inl a \<Rightarrow> f x a | Inr b \<Rightarrow> g x b)"
31041
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   166
apply (rule cont_apply [OF h])
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   167
apply (rule cont_sum_case2 [OF f2 g2])
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   168
apply (rule cont_sum_case1 [OF f1 g1])
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   169
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   170
37079
0cd15d8c90a0 remove cont2cont simproc; instead declare cont2cont rules as simp rules
huffman
parents: 35900
diff changeset
   171
lemma cont2cont_sum_case' [simp, cont2cont]:
31041
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   172
  assumes f: "cont (\<lambda>p. f (fst p) (snd p))"
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   173
  assumes g: "cont (\<lambda>p. g (fst p) (snd p))"
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   174
  assumes h: "cont (\<lambda>x. h x)"
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   175
  shows "cont (\<lambda>x. case h x of Inl a \<Rightarrow> f x a | Inr b \<Rightarrow> g x b)"
39808
1410c84013b9 rename cont2cont_split to cont2cont_prod_case; add lemmas prod_contI, prod_cont_iff; simplify some proofs
huffman
parents: 37678
diff changeset
   176
using assms by (simp add: cont2cont_sum_case prod_cont_iff)
31041
85b4843d9939 replace cont2cont_apply with cont_apply; add new cont2cont lemmas
huffman
parents: 29534
diff changeset
   177
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   178
subsection {* Compactness and chain-finiteness *}
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   179
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   180
lemma compact_Inl: "compact a \<Longrightarrow> compact (Inl a)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   181
apply (rule compactI2)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   182
apply (erule sum_chain_cases, safe)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   183
apply (simp add: lub_Inl)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   184
apply (erule (2) compactD2)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   185
apply (simp add: lub_Inr)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   186
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   187
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   188
lemma compact_Inr: "compact a \<Longrightarrow> compact (Inr a)"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   189
apply (rule compactI2)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   190
apply (erule sum_chain_cases, safe)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   191
apply (simp add: lub_Inl)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   192
apply (simp add: lub_Inr)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   193
apply (erule (2) compactD2)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   194
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   195
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   196
lemma compact_Inl_rev: "compact (Inl a) \<Longrightarrow> compact a"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   197
unfolding compact_def
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   198
by (drule adm_subst [OF cont_Inl], simp)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   199
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   200
lemma compact_Inr_rev: "compact (Inr a) \<Longrightarrow> compact a"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   201
unfolding compact_def
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   202
by (drule adm_subst [OF cont_Inr], simp)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   203
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   204
lemma compact_Inl_iff [simp]: "compact (Inl a) = compact a"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   205
by (safe elim!: compact_Inl compact_Inl_rev)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   206
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   207
lemma compact_Inr_iff [simp]: "compact (Inr a) = compact a"
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   208
by (safe elim!: compact_Inr compact_Inr_rev)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   209
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37111
diff changeset
   210
instance sum :: (chfin, chfin) chfin
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   211
apply intro_classes
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   212
apply (erule compact_imp_max_in_chain)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   213
apply (case_tac "\<Squnion>i. Y i", simp_all)
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   214
done
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   215
37678
0040bafffdef "prod" and "sum" replace "*" and "+" respectively
haftmann
parents: 37111
diff changeset
   216
instance sum :: (discrete_cpo, discrete_cpo) discrete_cpo
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 31041
diff changeset
   217
by intro_classes (simp add: below_sum_def split: sum.split)
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   218
40495
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   219
subsection {* Using sum types with fixrec *}
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   220
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   221
definition
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   222
  "match_Inl = (\<Lambda> x k. case x of Inl a \<Rightarrow> k\<cdot>a | Inr b \<Rightarrow> Fixrec.fail)"
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   223
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   224
definition
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   225
  "match_Inr = (\<Lambda> x k. case x of Inl a \<Rightarrow> Fixrec.fail | Inr b \<Rightarrow> k\<cdot>b)"
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   226
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   227
lemma match_Inl_simps [simp]:
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   228
  "match_Inl\<cdot>(Inl a)\<cdot>k = k\<cdot>a"
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   229
  "match_Inl\<cdot>(Inr b)\<cdot>k = Fixrec.fail"
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   230
unfolding match_Inl_def by simp_all
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   231
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   232
lemma match_Inr_simps [simp]:
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   233
  "match_Inr\<cdot>(Inl a)\<cdot>k = Fixrec.fail"
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   234
  "match_Inr\<cdot>(Inr b)\<cdot>k = k\<cdot>b"
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   235
unfolding match_Inr_def by simp_all
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   236
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   237
setup {*
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   238
  Fixrec.add_matchers
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   239
    [ (@{const_name Inl}, @{const_name match_Inl}),
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   240
      (@{const_name Inr}, @{const_name match_Inr}) ]
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   241
*}
2a92d3f5026c configure sum type for fixrec
huffman
parents: 40436
diff changeset
   242
40496
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   243
subsection {* Disjoint sum is a predomain *}
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   244
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   245
definition
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   246
  "encode_sum_u =
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   247
    (\<Lambda>(up\<cdot>x). case x of Inl a \<Rightarrow> sinl\<cdot>(up\<cdot>a) | Inr b \<Rightarrow> sinr\<cdot>(up\<cdot>b))"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   248
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   249
definition
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   250
  "decode_sum_u = sscase\<cdot>(\<Lambda>(up\<cdot>a). up\<cdot>(Inl a))\<cdot>(\<Lambda>(up\<cdot>b). up\<cdot>(Inr b))"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   251
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   252
lemma decode_encode_sum_u [simp]: "decode_sum_u\<cdot>(encode_sum_u\<cdot>x) = x"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   253
unfolding decode_sum_u_def encode_sum_u_def
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   254
by (case_tac x, simp, rename_tac y, case_tac y, simp_all)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   255
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   256
lemma encode_decode_sum_u [simp]: "encode_sum_u\<cdot>(decode_sum_u\<cdot>x) = x"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   257
unfolding decode_sum_u_def encode_sum_u_def
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   258
apply (case_tac x, simp)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   259
apply (rename_tac a, case_tac a, simp, simp)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   260
apply (rename_tac b, case_tac b, simp, simp)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   261
done
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   262
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   263
instantiation sum :: (predomain, predomain) predomain
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   264
begin
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   265
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   266
definition
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   267
  "liftemb = (udom_emb ssum_approx oo ssum_map\<cdot>emb\<cdot>emb) oo encode_sum_u"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   268
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   269
definition
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   270
  "liftprj =
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   271
    decode_sum_u oo (ssum_map\<cdot>prj\<cdot>prj oo udom_prj ssum_approx)"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   272
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   273
definition
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   274
  "liftdefl (t::('a + 'b) itself) = ssum_defl\<cdot>DEFL('a u)\<cdot>DEFL('b u)"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   275
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   276
instance proof
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   277
  show "ep_pair liftemb (liftprj :: udom \<rightarrow> ('a + 'b) u)"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   278
    unfolding liftemb_sum_def liftprj_sum_def
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   279
    apply (rule ep_pair_comp)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   280
    apply (rule ep_pair.intro, simp, simp)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   281
    apply (rule ep_pair_comp)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   282
    apply (intro ep_pair_ssum_map ep_pair_emb_prj)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   283
    apply (rule ep_pair_udom [OF ssum_approx])
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   284
    done
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   285
  show "cast\<cdot>LIFTDEFL('a + 'b) = liftemb oo (liftprj :: udom \<rightarrow> ('a + 'b) u)"
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   286
    unfolding liftemb_sum_def liftprj_sum_def liftdefl_sum_def
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   287
    by (simp add: cast_ssum_defl cast_DEFL cfcomp1 ssum_map_map)
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   288
qed
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   289
29130
685c9e05a6ab new theory Dsum: cpo of disjoint sum
huffman
parents:
diff changeset
   290
end
40496
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   291
71283f31a27f instance sum :: (predomain, predomain) predomain
huffman
parents: 40495
diff changeset
   292
end