src/HOLCF/UpperPD.thy
author huffman
Fri, 20 Jun 2008 23:01:09 +0200
changeset 27310 d0229bc6c461
parent 27309 c74270fd72a8
child 27373 5794a0e3e26c
permissions -rw-r--r--
simplify profinite class axioms
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/UpperPD.thy
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     2
    ID:         $Id$
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     3
    Author:     Brian Huffman
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     4
*)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     5
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     6
header {* Upper powerdomain *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     7
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     8
theory UpperPD
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     9
imports CompactBasis
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    10
begin
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    11
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    12
subsection {* Basis preorder *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    13
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    14
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    15
  upper_le :: "'a pd_basis \<Rightarrow> 'a pd_basis \<Rightarrow> bool" (infix "\<le>\<sharp>" 50) where
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    16
  "upper_le = (\<lambda>u v. \<forall>y\<in>Rep_pd_basis v. \<exists>x\<in>Rep_pd_basis u. x \<sqsubseteq> y)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    17
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    18
lemma upper_le_refl [simp]: "t \<le>\<sharp> t"
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    19
unfolding upper_le_def by fast
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    20
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    21
lemma upper_le_trans: "\<lbrakk>t \<le>\<sharp> u; u \<le>\<sharp> v\<rbrakk> \<Longrightarrow> t \<le>\<sharp> v"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    22
unfolding upper_le_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    23
apply (rule ballI)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    24
apply (drule (1) bspec, erule bexE)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    25
apply (drule (1) bspec, erule bexE)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    26
apply (erule rev_bexI)
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    27
apply (erule (1) trans_less)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    28
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    29
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    30
interpretation upper_le: preorder [upper_le]
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    31
by (rule preorder.intro, rule upper_le_refl, rule upper_le_trans)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    32
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    33
lemma upper_le_minimal [simp]: "PDUnit compact_bot \<le>\<sharp> t"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    34
unfolding upper_le_def Rep_PDUnit by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    35
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    36
lemma PDUnit_upper_mono: "x \<sqsubseteq> y \<Longrightarrow> PDUnit x \<le>\<sharp> PDUnit y"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    37
unfolding upper_le_def Rep_PDUnit by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    38
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    39
lemma PDPlus_upper_mono: "\<lbrakk>s \<le>\<sharp> t; u \<le>\<sharp> v\<rbrakk> \<Longrightarrow> PDPlus s u \<le>\<sharp> PDPlus t v"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    40
unfolding upper_le_def Rep_PDPlus by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    41
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    42
lemma PDPlus_upper_less: "PDPlus t u \<le>\<sharp> t"
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    43
unfolding upper_le_def Rep_PDPlus by fast
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    44
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    45
lemma upper_le_PDUnit_PDUnit_iff [simp]:
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    46
  "(PDUnit a \<le>\<sharp> PDUnit b) = a \<sqsubseteq> b"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    47
unfolding upper_le_def Rep_PDUnit by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    48
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    49
lemma upper_le_PDPlus_PDUnit_iff:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    50
  "(PDPlus t u \<le>\<sharp> PDUnit a) = (t \<le>\<sharp> PDUnit a \<or> u \<le>\<sharp> PDUnit a)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    51
unfolding upper_le_def Rep_PDPlus Rep_PDUnit by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    52
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    53
lemma upper_le_PDPlus_iff: "(t \<le>\<sharp> PDPlus u v) = (t \<le>\<sharp> u \<and> t \<le>\<sharp> v)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    54
unfolding upper_le_def Rep_PDPlus by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    55
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    56
lemma upper_le_induct [induct set: upper_le]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    57
  assumes le: "t \<le>\<sharp> u"
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    58
  assumes 1: "\<And>a b. a \<sqsubseteq> b \<Longrightarrow> P (PDUnit a) (PDUnit b)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    59
  assumes 2: "\<And>t u a. P t (PDUnit a) \<Longrightarrow> P (PDPlus t u) (PDUnit a)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    60
  assumes 3: "\<And>t u v. \<lbrakk>P t u; P t v\<rbrakk> \<Longrightarrow> P t (PDPlus u v)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    61
  shows "P t u"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    62
using le apply (induct u arbitrary: t rule: pd_basis_induct)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    63
apply (erule rev_mp)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    64
apply (induct_tac t rule: pd_basis_induct)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    65
apply (simp add: 1)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    66
apply (simp add: upper_le_PDPlus_PDUnit_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    67
apply (simp add: 2)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    68
apply (subst PDPlus_commute)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    69
apply (simp add: 2)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    70
apply (simp add: upper_le_PDPlus_iff 3)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    71
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    72
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    73
lemma approx_pd_upper_chain:
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    74
  "approx_pd n t \<le>\<sharp> approx_pd (Suc n) t"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    75
apply (induct t rule: pd_basis_induct)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    76
apply (simp add: compact_basis.take_chain)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    77
apply (simp add: PDPlus_upper_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    78
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    79
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    80
lemma approx_pd_upper_le: "approx_pd i t \<le>\<sharp> t"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    81
apply (induct t rule: pd_basis_induct)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    82
apply (simp add: compact_basis.take_less)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    83
apply (simp add: PDPlus_upper_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    84
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    85
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    86
lemma approx_pd_upper_mono:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    87
  "t \<le>\<sharp> u \<Longrightarrow> approx_pd n t \<le>\<sharp> approx_pd n u"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    88
apply (erule upper_le_induct)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    89
apply (simp add: compact_basis.take_mono)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    90
apply (simp add: upper_le_PDPlus_PDUnit_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    91
apply (simp add: upper_le_PDPlus_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    92
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    93
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    94
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    95
subsection {* Type definition *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    96
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    97
cpodef (open) 'a upper_pd =
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
    98
  "{S::'a pd_basis cset. upper_le.ideal (Rep_cset S)}"
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
    99
by (rule upper_le.cpodef_ideal_lemma)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   100
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   101
lemma ideal_Rep_upper_pd: "upper_le.ideal (Rep_cset (Rep_upper_pd xs))"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   102
by (rule Rep_upper_pd [unfolded mem_Collect_eq])
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   103
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   104
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   105
  upper_principal :: "'a pd_basis \<Rightarrow> 'a upper_pd" where
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   106
  "upper_principal t = Abs_upper_pd (Abs_cset {u. u \<le>\<sharp> t})"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   107
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   108
lemma Rep_upper_principal:
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   109
  "Rep_cset (Rep_upper_pd (upper_principal t)) = {u. u \<le>\<sharp> t}"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   110
unfolding upper_principal_def
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   111
by (simp add: Abs_upper_pd_inverse upper_le.ideal_principal)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   112
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   113
interpretation upper_pd:
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   114
  ideal_completion
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   115
    [upper_le approx_pd upper_principal "\<lambda>x. Rep_cset (Rep_upper_pd x)"]
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   116
apply unfold_locales
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   117
apply (rule approx_pd_upper_le)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   118
apply (rule approx_pd_idem)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   119
apply (erule approx_pd_upper_mono)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   120
apply (rule approx_pd_upper_chain)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   121
apply (rule finite_range_approx_pd)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   122
apply (rule approx_pd_covers)
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
   123
apply (rule ideal_Rep_upper_pd)
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   124
apply (simp add: cont2contlubE [OF cont_Rep_upper_pd] Rep_cset_lub)
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
   125
apply (rule Rep_upper_principal)
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   126
apply (simp only: less_upper_pd_def sq_le_cset_def)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   127
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   128
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   129
text {* Upper powerdomain is pointed *}
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   130
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   131
lemma upper_pd_minimal: "upper_principal (PDUnit compact_bot) \<sqsubseteq> ys"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   132
by (induct ys rule: upper_pd.principal_induct, simp, simp)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   133
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   134
instance upper_pd :: (bifinite) pcpo
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   135
by intro_classes (fast intro: upper_pd_minimal)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   136
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   137
lemma inst_upper_pd_pcpo: "\<bottom> = upper_principal (PDUnit compact_bot)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   138
by (rule upper_pd_minimal [THEN UU_I, symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   139
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   140
text {* Upper powerdomain is profinite *}
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   141
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   142
instantiation upper_pd :: (profinite) profinite
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   143
begin
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   144
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   145
definition
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   146
  approx_upper_pd_def: "approx = upper_pd.completion_approx"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   147
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   148
instance
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   149
apply (intro_classes, unfold approx_upper_pd_def)
27310
d0229bc6c461 simplify profinite class axioms
huffman
parents: 27309
diff changeset
   150
apply (rule upper_pd.chain_completion_approx)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   151
apply (rule upper_pd.lub_completion_approx)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   152
apply (rule upper_pd.completion_approx_idem)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   153
apply (rule upper_pd.finite_fixes_completion_approx)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   154
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   155
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   156
end
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   157
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   158
instance upper_pd :: (bifinite) bifinite ..
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   159
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   160
lemma approx_upper_principal [simp]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   161
  "approx n\<cdot>(upper_principal t) = upper_principal (approx_pd n t)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   162
unfolding approx_upper_pd_def
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   163
by (rule upper_pd.completion_approx_principal)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   164
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   165
lemma approx_eq_upper_principal:
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   166
  "\<exists>t\<in>Rep_cset (Rep_upper_pd xs).
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   167
    approx n\<cdot>xs = upper_principal (approx_pd n t)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   168
unfolding approx_upper_pd_def
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   169
by (rule upper_pd.completion_approx_eq_principal)
26407
562a1d615336 rename class bifinite_cpo to profinite; generalize powerdomains from bifinite to profinite
huffman
parents: 26041
diff changeset
   170
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   171
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   172
subsection {* Monadic unit and plus *}
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   173
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   174
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   175
  upper_unit :: "'a \<rightarrow> 'a upper_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   176
  "upper_unit = compact_basis.basis_fun (\<lambda>a. upper_principal (PDUnit a))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   177
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   178
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   179
  upper_plus :: "'a upper_pd \<rightarrow> 'a upper_pd \<rightarrow> 'a upper_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   180
  "upper_plus = upper_pd.basis_fun (\<lambda>t. upper_pd.basis_fun (\<lambda>u.
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   181
      upper_principal (PDPlus t u)))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   182
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   183
abbreviation
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   184
  upper_add :: "'a upper_pd \<Rightarrow> 'a upper_pd \<Rightarrow> 'a upper_pd"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   185
    (infixl "+\<sharp>" 65) where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   186
  "xs +\<sharp> ys == upper_plus\<cdot>xs\<cdot>ys"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   187
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   188
syntax
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   189
  "_upper_pd" :: "args \<Rightarrow> 'a upper_pd" ("{_}\<sharp>")
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   190
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   191
translations
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   192
  "{x,xs}\<sharp>" == "{x}\<sharp> +\<sharp> {xs}\<sharp>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   193
  "{x}\<sharp>" == "CONST upper_unit\<cdot>x"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   194
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   195
lemma upper_unit_Rep_compact_basis [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   196
  "{Rep_compact_basis a}\<sharp> = upper_principal (PDUnit a)"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   197
unfolding upper_unit_def
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   198
by (simp add: compact_basis.basis_fun_principal PDUnit_upper_mono)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   199
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   200
lemma upper_plus_principal [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   201
  "upper_principal t +\<sharp> upper_principal u = upper_principal (PDPlus t u)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   202
unfolding upper_plus_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   203
by (simp add: upper_pd.basis_fun_principal
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   204
    upper_pd.basis_fun_mono PDPlus_upper_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   205
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   206
lemma approx_upper_unit [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   207
  "approx n\<cdot>{x}\<sharp> = {approx n\<cdot>x}\<sharp>"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   208
apply (induct x rule: compact_basis.principal_induct, simp)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   209
apply (simp add: approx_Rep_compact_basis)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   210
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   211
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   212
lemma approx_upper_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   213
  "approx n\<cdot>(xs +\<sharp> ys) = (approx n\<cdot>xs) +\<sharp> (approx n\<cdot>ys)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   214
by (induct xs ys rule: upper_pd.principal_induct2, simp, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   215
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   216
lemma upper_plus_assoc: "(xs +\<sharp> ys) +\<sharp> zs = xs +\<sharp> (ys +\<sharp> zs)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   217
apply (induct xs ys arbitrary: zs rule: upper_pd.principal_induct2, simp, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   218
apply (rule_tac x=zs in upper_pd.principal_induct, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   219
apply (simp add: PDPlus_assoc)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   220
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   221
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   222
lemma upper_plus_commute: "xs +\<sharp> ys = ys +\<sharp> xs"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   223
apply (induct xs ys rule: upper_pd.principal_induct2, simp, simp)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   224
apply (simp add: PDPlus_commute)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   225
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   226
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   227
lemma upper_plus_absorb: "xs +\<sharp> xs = xs"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   228
apply (induct xs rule: upper_pd.principal_induct, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   229
apply (simp add: PDPlus_absorb)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   230
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   231
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   232
interpretation aci_upper_plus: ab_semigroup_idem_mult ["op +\<sharp>"]
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   233
  by unfold_locales
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   234
    (rule upper_plus_assoc upper_plus_commute upper_plus_absorb)+
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   235
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   236
lemma upper_plus_left_commute: "xs +\<sharp> (ys +\<sharp> zs) = ys +\<sharp> (xs +\<sharp> zs)"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   237
by (rule aci_upper_plus.mult_left_commute)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   238
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   239
lemma upper_plus_left_absorb: "xs +\<sharp> (xs +\<sharp> ys) = xs +\<sharp> ys"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   240
by (rule aci_upper_plus.mult_left_idem)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   241
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   242
lemmas upper_plus_aci = aci_upper_plus.mult_ac_idem
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   243
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   244
lemma upper_plus_less1: "xs +\<sharp> ys \<sqsubseteq> xs"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   245
apply (induct xs ys rule: upper_pd.principal_induct2, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   246
apply (simp add: PDPlus_upper_less)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   247
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   248
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   249
lemma upper_plus_less2: "xs +\<sharp> ys \<sqsubseteq> ys"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   250
by (subst upper_plus_commute, rule upper_plus_less1)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   251
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   252
lemma upper_plus_greatest: "\<lbrakk>xs \<sqsubseteq> ys; xs \<sqsubseteq> zs\<rbrakk> \<Longrightarrow> xs \<sqsubseteq> ys +\<sharp> zs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   253
apply (subst upper_plus_absorb [of xs, symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   254
apply (erule (1) monofun_cfun [OF monofun_cfun_arg])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   255
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   256
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   257
lemma upper_less_plus_iff:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   258
  "xs \<sqsubseteq> ys +\<sharp> zs \<longleftrightarrow> xs \<sqsubseteq> ys \<and> xs \<sqsubseteq> zs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   259
apply safe
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   260
apply (erule trans_less [OF _ upper_plus_less1])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   261
apply (erule trans_less [OF _ upper_plus_less2])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   262
apply (erule (1) upper_plus_greatest)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   263
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   264
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   265
lemma upper_plus_less_unit_iff:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   266
  "xs +\<sharp> ys \<sqsubseteq> {z}\<sharp> \<longleftrightarrow> xs \<sqsubseteq> {z}\<sharp> \<or> ys \<sqsubseteq> {z}\<sharp>"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   267
 apply (rule iffI)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   268
  apply (subgoal_tac
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   269
    "adm (\<lambda>f. f\<cdot>xs \<sqsubseteq> f\<cdot>{z}\<sharp> \<or> f\<cdot>ys \<sqsubseteq> f\<cdot>{z}\<sharp>)")
25925
3dc4acca4388 change lemma admD to rule_format
huffman
parents: 25904
diff changeset
   270
   apply (drule admD, rule chain_approx)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   271
    apply (drule_tac f="approx i" in monofun_cfun_arg)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   272
    apply (cut_tac x="approx i\<cdot>xs" in upper_pd.compact_imp_principal, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   273
    apply (cut_tac x="approx i\<cdot>ys" in upper_pd.compact_imp_principal, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   274
    apply (cut_tac x="approx i\<cdot>z" in compact_basis.compact_imp_principal, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   275
    apply (clarify, simp add: upper_le_PDPlus_PDUnit_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   276
   apply simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   277
  apply simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   278
 apply (erule disjE)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   279
  apply (erule trans_less [OF upper_plus_less1])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   280
 apply (erule trans_less [OF upper_plus_less2])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   281
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   282
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   283
lemma upper_unit_less_iff [simp]: "{x}\<sharp> \<sqsubseteq> {y}\<sharp> \<longleftrightarrow> x \<sqsubseteq> y"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   284
 apply (rule iffI)
27309
c74270fd72a8 clean up and rename some profinite lemmas
huffman
parents: 27297
diff changeset
   285
  apply (rule profinite_less_ext)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   286
  apply (drule_tac f="approx i" in monofun_cfun_arg, simp)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   287
  apply (cut_tac x="approx i\<cdot>x" in compact_basis.compact_imp_principal, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   288
  apply (cut_tac x="approx i\<cdot>y" in compact_basis.compact_imp_principal, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   289
  apply clarsimp
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   290
 apply (erule monofun_cfun_arg)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   291
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   292
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   293
lemmas upper_pd_less_simps =
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   294
  upper_unit_less_iff
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   295
  upper_less_plus_iff
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   296
  upper_plus_less_unit_iff
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   297
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   298
lemma upper_unit_eq_iff [simp]: "{x}\<sharp> = {y}\<sharp> \<longleftrightarrow> x = y"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   299
unfolding po_eq_conv by simp
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   300
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   301
lemma upper_unit_strict [simp]: "{\<bottom>}\<sharp> = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   302
unfolding inst_upper_pd_pcpo Rep_compact_bot [symmetric] by simp
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   303
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   304
lemma upper_plus_strict1 [simp]: "\<bottom> +\<sharp> ys = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   305
by (rule UU_I, rule upper_plus_less1)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   306
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   307
lemma upper_plus_strict2 [simp]: "xs +\<sharp> \<bottom> = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   308
by (rule UU_I, rule upper_plus_less2)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   309
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   310
lemma upper_unit_strict_iff [simp]: "{x}\<sharp> = \<bottom> \<longleftrightarrow> x = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   311
unfolding upper_unit_strict [symmetric] by (rule upper_unit_eq_iff)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   312
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   313
lemma upper_plus_strict_iff [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   314
  "xs +\<sharp> ys = \<bottom> \<longleftrightarrow> xs = \<bottom> \<or> ys = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   315
apply (rule iffI)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   316
apply (erule rev_mp)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   317
apply (rule upper_pd.principal_induct2 [where x=xs and y=ys], simp, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   318
apply (simp add: inst_upper_pd_pcpo upper_pd.principal_eq_iff
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   319
                 upper_le_PDPlus_PDUnit_iff)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   320
apply auto
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   321
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   322
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   323
lemma compact_upper_unit_iff [simp]: "compact {x}\<sharp> \<longleftrightarrow> compact x"
27309
c74270fd72a8 clean up and rename some profinite lemmas
huffman
parents: 27297
diff changeset
   324
unfolding profinite_compact_iff by simp
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   325
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   326
lemma compact_upper_plus [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   327
  "\<lbrakk>compact xs; compact ys\<rbrakk> \<Longrightarrow> compact (xs +\<sharp> ys)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   328
by (auto dest!: upper_pd.compact_imp_principal)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   329
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   330
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   331
subsection {* Induction rules *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   332
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   333
lemma upper_pd_induct1:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   334
  assumes P: "adm P"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   335
  assumes unit: "\<And>x. P {x}\<sharp>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   336
  assumes insert: "\<And>x ys. \<lbrakk>P {x}\<sharp>; P ys\<rbrakk> \<Longrightarrow> P ({x}\<sharp> +\<sharp> ys)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   337
  shows "P (xs::'a upper_pd)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   338
apply (induct xs rule: upper_pd.principal_induct, rule P)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   339
apply (induct_tac a rule: pd_basis_induct1)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   340
apply (simp only: upper_unit_Rep_compact_basis [symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   341
apply (rule unit)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   342
apply (simp only: upper_unit_Rep_compact_basis [symmetric]
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   343
                  upper_plus_principal [symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   344
apply (erule insert [OF unit])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   345
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   346
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   347
lemma upper_pd_induct:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   348
  assumes P: "adm P"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   349
  assumes unit: "\<And>x. P {x}\<sharp>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   350
  assumes plus: "\<And>xs ys. \<lbrakk>P xs; P ys\<rbrakk> \<Longrightarrow> P (xs +\<sharp> ys)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   351
  shows "P (xs::'a upper_pd)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   352
apply (induct xs rule: upper_pd.principal_induct, rule P)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   353
apply (induct_tac a rule: pd_basis_induct)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   354
apply (simp only: upper_unit_Rep_compact_basis [symmetric] unit)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   355
apply (simp only: upper_plus_principal [symmetric] plus)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   356
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   357
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   358
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   359
subsection {* Monadic bind *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   360
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   361
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   362
  upper_bind_basis ::
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   363
  "'a pd_basis \<Rightarrow> ('a \<rightarrow> 'b upper_pd) \<rightarrow> 'b upper_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   364
  "upper_bind_basis = fold_pd
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   365
    (\<lambda>a. \<Lambda> f. f\<cdot>(Rep_compact_basis a))
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   366
    (\<lambda>x y. \<Lambda> f. x\<cdot>f +\<sharp> y\<cdot>f)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   367
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   368
lemma ACI_upper_bind:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   369
  "ab_semigroup_idem_mult (\<lambda>x y. \<Lambda> f. x\<cdot>f +\<sharp> y\<cdot>f)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   370
apply unfold_locales
26041
c2e15e65165f locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
haftmann
parents: 25925
diff changeset
   371
apply (simp add: upper_plus_assoc)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   372
apply (simp add: upper_plus_commute)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   373
apply (simp add: upper_plus_absorb eta_cfun)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   374
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   375
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   376
lemma upper_bind_basis_simps [simp]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   377
  "upper_bind_basis (PDUnit a) =
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   378
    (\<Lambda> f. f\<cdot>(Rep_compact_basis a))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   379
  "upper_bind_basis (PDPlus t u) =
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   380
    (\<Lambda> f. upper_bind_basis t\<cdot>f +\<sharp> upper_bind_basis u\<cdot>f)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   381
unfolding upper_bind_basis_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   382
apply -
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   383
apply (rule fold_pd_PDUnit [OF ACI_upper_bind])
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   384
apply (rule fold_pd_PDPlus [OF ACI_upper_bind])
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   385
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   386
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   387
lemma upper_bind_basis_mono:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   388
  "t \<le>\<sharp> u \<Longrightarrow> upper_bind_basis t \<sqsubseteq> upper_bind_basis u"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   389
unfolding expand_cfun_less
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   390
apply (erule upper_le_induct, safe)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   391
apply (simp add: monofun_cfun)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   392
apply (simp add: trans_less [OF upper_plus_less1])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   393
apply (simp add: upper_less_plus_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   394
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   395
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   396
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   397
  upper_bind :: "'a upper_pd \<rightarrow> ('a \<rightarrow> 'b upper_pd) \<rightarrow> 'b upper_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   398
  "upper_bind = upper_pd.basis_fun upper_bind_basis"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   399
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   400
lemma upper_bind_principal [simp]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   401
  "upper_bind\<cdot>(upper_principal t) = upper_bind_basis t"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   402
unfolding upper_bind_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   403
apply (rule upper_pd.basis_fun_principal)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   404
apply (erule upper_bind_basis_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   405
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   406
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   407
lemma upper_bind_unit [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   408
  "upper_bind\<cdot>{x}\<sharp>\<cdot>f = f\<cdot>x"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   409
by (induct x rule: compact_basis.principal_induct, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   410
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   411
lemma upper_bind_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   412
  "upper_bind\<cdot>(xs +\<sharp> ys)\<cdot>f = upper_bind\<cdot>xs\<cdot>f +\<sharp> upper_bind\<cdot>ys\<cdot>f"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   413
by (induct xs ys rule: upper_pd.principal_induct2, simp, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   414
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   415
lemma upper_bind_strict [simp]: "upper_bind\<cdot>\<bottom>\<cdot>f = f\<cdot>\<bottom>"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   416
unfolding upper_unit_strict [symmetric] by (rule upper_bind_unit)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   417
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   418
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   419
subsection {* Map and join *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   420
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   421
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   422
  upper_map :: "('a \<rightarrow> 'b) \<rightarrow> 'a upper_pd \<rightarrow> 'b upper_pd" where
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   423
  "upper_map = (\<Lambda> f xs. upper_bind\<cdot>xs\<cdot>(\<Lambda> x. {f\<cdot>x}\<sharp>))"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   424
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   425
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   426
  upper_join :: "'a upper_pd upper_pd \<rightarrow> 'a upper_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   427
  "upper_join = (\<Lambda> xss. upper_bind\<cdot>xss\<cdot>(\<Lambda> xs. xs))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   428
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   429
lemma upper_map_unit [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   430
  "upper_map\<cdot>f\<cdot>{x}\<sharp> = {f\<cdot>x}\<sharp>"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   431
unfolding upper_map_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   432
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   433
lemma upper_map_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   434
  "upper_map\<cdot>f\<cdot>(xs +\<sharp> ys) = upper_map\<cdot>f\<cdot>xs +\<sharp> upper_map\<cdot>f\<cdot>ys"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   435
unfolding upper_map_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   436
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   437
lemma upper_join_unit [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   438
  "upper_join\<cdot>{xs}\<sharp> = xs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   439
unfolding upper_join_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   440
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   441
lemma upper_join_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   442
  "upper_join\<cdot>(xss +\<sharp> yss) = upper_join\<cdot>xss +\<sharp> upper_join\<cdot>yss"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   443
unfolding upper_join_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   444
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   445
lemma upper_map_ident: "upper_map\<cdot>(\<Lambda> x. x)\<cdot>xs = xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   446
by (induct xs rule: upper_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   447
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   448
lemma upper_map_map:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   449
  "upper_map\<cdot>f\<cdot>(upper_map\<cdot>g\<cdot>xs) = upper_map\<cdot>(\<Lambda> x. f\<cdot>(g\<cdot>x))\<cdot>xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   450
by (induct xs rule: upper_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   451
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   452
lemma upper_join_map_unit:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   453
  "upper_join\<cdot>(upper_map\<cdot>upper_unit\<cdot>xs) = xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   454
by (induct xs rule: upper_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   455
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   456
lemma upper_join_map_join:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   457
  "upper_join\<cdot>(upper_map\<cdot>upper_join\<cdot>xsss) = upper_join\<cdot>(upper_join\<cdot>xsss)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   458
by (induct xsss rule: upper_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   459
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   460
lemma upper_join_map_map:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   461
  "upper_join\<cdot>(upper_map\<cdot>(upper_map\<cdot>f)\<cdot>xss) =
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   462
   upper_map\<cdot>f\<cdot>(upper_join\<cdot>xss)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   463
by (induct xss rule: upper_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   464
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   465
lemma upper_map_approx: "upper_map\<cdot>(approx n)\<cdot>xs = approx n\<cdot>xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   466
by (induct xs rule: upper_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   467
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   468
end