src/HOLCF/LowerPD.thy
author huffman
Fri, 20 Jun 2008 22:51:50 +0200
changeset 27309 c74270fd72a8
parent 27297 2c42b1505f25
child 27310 d0229bc6c461
permissions -rw-r--r--
clean up and rename some profinite lemmas
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/LowerPD.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 {* Lower powerdomain *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     7
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
     8
theory LowerPD
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
  lower_le :: "'a pd_basis \<Rightarrow> 'a pd_basis \<Rightarrow> bool" (infix "\<le>\<flat>" 50) where
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    16
  "lower_le = (\<lambda>u v. \<forall>x\<in>Rep_pd_basis u. \<exists>y\<in>Rep_pd_basis v. 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 lower_le_refl [simp]: "t \<le>\<flat> t"
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    19
unfolding lower_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 lower_le_trans: "\<lbrakk>t \<le>\<flat> u; u \<le>\<flat> v\<rbrakk> \<Longrightarrow> t \<le>\<flat> v"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    22
unfolding lower_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 lower_le: preorder [lower_le]
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    31
by (rule preorder.intro, rule lower_le_refl, rule lower_le_trans)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    32
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    33
lemma lower_le_minimal [simp]: "PDUnit compact_bot \<le>\<flat> t"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    34
unfolding lower_le_def Rep_PDUnit
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    35
by (simp, rule Rep_pd_basis_nonempty [folded ex_in_conv])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    36
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    37
lemma PDUnit_lower_mono: "x \<sqsubseteq> y \<Longrightarrow> PDUnit x \<le>\<flat> PDUnit y"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    38
unfolding lower_le_def Rep_PDUnit by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    39
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    40
lemma PDPlus_lower_mono: "\<lbrakk>s \<le>\<flat> t; u \<le>\<flat> v\<rbrakk> \<Longrightarrow> PDPlus s u \<le>\<flat> PDPlus t v"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    41
unfolding lower_le_def Rep_PDPlus by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    42
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    43
lemma PDPlus_lower_less: "t \<le>\<flat> PDPlus t u"
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    44
unfolding lower_le_def Rep_PDPlus by fast
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    45
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    46
lemma lower_le_PDUnit_PDUnit_iff [simp]:
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    47
  "(PDUnit a \<le>\<flat> PDUnit b) = a \<sqsubseteq> b"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    48
unfolding lower_le_def Rep_PDUnit by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    49
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    50
lemma lower_le_PDUnit_PDPlus_iff:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    51
  "(PDUnit a \<le>\<flat> PDPlus t u) = (PDUnit a \<le>\<flat> t \<or> PDUnit a \<le>\<flat> u)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    52
unfolding lower_le_def Rep_PDPlus Rep_PDUnit by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    53
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    54
lemma lower_le_PDPlus_iff: "(PDPlus t u \<le>\<flat> v) = (t \<le>\<flat> v \<and> u \<le>\<flat> v)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    55
unfolding lower_le_def Rep_PDPlus by fast
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    56
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    57
lemma lower_le_induct [induct set: lower_le]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    58
  assumes le: "t \<le>\<flat> u"
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
    59
  assumes 1: "\<And>a b. a \<sqsubseteq> b \<Longrightarrow> P (PDUnit a) (PDUnit b)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    60
  assumes 2: "\<And>t u a. P (PDUnit a) t \<Longrightarrow> P (PDUnit a) (PDPlus t u)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    61
  assumes 3: "\<And>t u v. \<lbrakk>P t v; P u v\<rbrakk> \<Longrightarrow> P (PDPlus t u) v"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    62
  shows "P t u"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    63
using le
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    64
apply (induct t arbitrary: u rule: pd_basis_induct)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    65
apply (erule rev_mp)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    66
apply (induct_tac u rule: pd_basis_induct)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    67
apply (simp add: 1)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    68
apply (simp add: lower_le_PDUnit_PDPlus_iff)
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 (subst PDPlus_commute)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    71
apply (simp add: 2)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    72
apply (simp add: lower_le_PDPlus_iff 3)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    73
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    74
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    75
lemma approx_pd_lower_chain:
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    76
  "approx_pd n t \<le>\<flat> approx_pd (Suc n) t"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    77
apply (induct t rule: pd_basis_induct)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    78
apply (simp add: compact_basis.take_chain)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    79
apply (simp add: PDPlus_lower_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    80
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    81
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    82
lemma approx_pd_lower_le: "approx_pd i t \<le>\<flat> t"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    83
apply (induct t rule: pd_basis_induct)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    84
apply (simp add: compact_basis.take_less)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    85
apply (simp add: PDPlus_lower_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    86
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    87
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    88
lemma approx_pd_lower_mono:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    89
  "t \<le>\<flat> u \<Longrightarrow> approx_pd n t \<le>\<flat> approx_pd n u"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    90
apply (erule lower_le_induct)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
    91
apply (simp add: compact_basis.take_mono)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    92
apply (simp add: lower_le_PDUnit_PDPlus_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    93
apply (simp add: lower_le_PDPlus_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    94
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    95
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    96
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    97
subsection {* Type definition *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    98
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
    99
cpodef (open) 'a lower_pd =
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   100
  "{S::'a pd_basis cset. lower_le.ideal (Rep_cset S)}"
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   101
by (rule lower_le.cpodef_ideal_lemma)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   102
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   103
lemma ideal_Rep_lower_pd: "lower_le.ideal (Rep_cset (Rep_lower_pd xs))"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   104
by (rule Rep_lower_pd [unfolded mem_Collect_eq])
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   105
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   106
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   107
  lower_principal :: "'a pd_basis \<Rightarrow> 'a lower_pd" where
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   108
  "lower_principal t = Abs_lower_pd (Abs_cset {u. u \<le>\<flat> t})"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   109
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   110
lemma Rep_lower_principal:
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   111
  "Rep_cset (Rep_lower_pd (lower_principal t)) = {u. u \<le>\<flat> t}"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   112
unfolding lower_principal_def
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   113
by (simp add: Abs_lower_pd_inverse lower_le.ideal_principal)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   114
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   115
interpretation lower_pd:
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   116
  ideal_completion
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   117
    [lower_le approx_pd lower_principal "\<lambda>x. Rep_cset (Rep_lower_pd x)"]
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   118
apply unfold_locales
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   119
apply (rule approx_pd_lower_le)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   120
apply (rule approx_pd_idem)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   121
apply (erule approx_pd_lower_mono)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   122
apply (rule approx_pd_lower_chain)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   123
apply (rule finite_range_approx_pd)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   124
apply (rule approx_pd_covers)
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
   125
apply (rule ideal_Rep_lower_pd)
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   126
apply (simp add: cont2contlubE [OF cont_Rep_lower_pd] Rep_cset_lub)
26420
57a626f64875 make preorder locale into a superclass of class po
huffman
parents: 26407
diff changeset
   127
apply (rule Rep_lower_principal)
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   128
apply (simp only: less_lower_pd_def sq_le_cset_def)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   129
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   130
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   131
text {* Lower powerdomain is pointed *}
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   132
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   133
lemma lower_pd_minimal: "lower_principal (PDUnit compact_bot) \<sqsubseteq> ys"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   134
by (induct ys rule: lower_pd.principal_induct, simp, simp)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   135
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   136
instance lower_pd :: (bifinite) pcpo
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   137
by intro_classes (fast intro: lower_pd_minimal)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   138
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   139
lemma inst_lower_pd_pcpo: "\<bottom> = lower_principal (PDUnit compact_bot)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   140
by (rule lower_pd_minimal [THEN UU_I, symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   141
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   142
text {* Lower powerdomain is profinite *}
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   143
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   144
instantiation lower_pd :: (profinite) profinite
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   145
begin
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   146
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   147
definition
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   148
  approx_lower_pd_def: "approx = lower_pd.completion_approx"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   149
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   150
instance
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   151
apply (intro_classes, unfold approx_lower_pd_def)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   152
apply (simp add: lower_pd.chain_completion_approx)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   153
apply (rule lower_pd.lub_completion_approx)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   154
apply (rule lower_pd.completion_approx_idem)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   155
apply (rule lower_pd.finite_fixes_completion_approx)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   156
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   157
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   158
end
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26927
diff changeset
   159
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   160
instance lower_pd :: (bifinite) bifinite ..
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   161
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   162
lemma approx_lower_principal [simp]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   163
  "approx n\<cdot>(lower_principal t) = lower_principal (approx_pd n t)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   164
unfolding approx_lower_pd_def
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   165
by (rule lower_pd.completion_approx_principal)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   166
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   167
lemma approx_eq_lower_principal:
27297
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   168
  "\<exists>t\<in>Rep_cset (Rep_lower_pd xs).
2c42b1505f25 removed SetPcpo.thy and cpo instance for type bool;
huffman
parents: 27289
diff changeset
   169
    approx n\<cdot>xs = lower_principal (approx_pd n t)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   170
unfolding approx_lower_pd_def
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   171
by (rule lower_pd.completion_approx_eq_principal)
26407
562a1d615336 rename class bifinite_cpo to profinite; generalize powerdomains from bifinite to profinite
huffman
parents: 26041
diff changeset
   172
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   173
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   174
subsection {* Monadic unit and plus *}
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   175
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   176
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   177
  lower_unit :: "'a \<rightarrow> 'a lower_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   178
  "lower_unit = compact_basis.basis_fun (\<lambda>a. lower_principal (PDUnit a))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   179
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   180
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   181
  lower_plus :: "'a lower_pd \<rightarrow> 'a lower_pd \<rightarrow> 'a lower_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   182
  "lower_plus = lower_pd.basis_fun (\<lambda>t. lower_pd.basis_fun (\<lambda>u.
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   183
      lower_principal (PDPlus t u)))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   184
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   185
abbreviation
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   186
  lower_add :: "'a lower_pd \<Rightarrow> 'a lower_pd \<Rightarrow> 'a lower_pd"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   187
    (infixl "+\<flat>" 65) where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   188
  "xs +\<flat> ys == lower_plus\<cdot>xs\<cdot>ys"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   189
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   190
syntax
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   191
  "_lower_pd" :: "args \<Rightarrow> 'a lower_pd" ("{_}\<flat>")
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   192
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   193
translations
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   194
  "{x,xs}\<flat>" == "{x}\<flat> +\<flat> {xs}\<flat>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   195
  "{x}\<flat>" == "CONST lower_unit\<cdot>x"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   196
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   197
lemma lower_unit_Rep_compact_basis [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   198
  "{Rep_compact_basis a}\<flat> = lower_principal (PDUnit a)"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   199
unfolding lower_unit_def
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   200
by (simp add: compact_basis.basis_fun_principal PDUnit_lower_mono)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   201
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   202
lemma lower_plus_principal [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   203
  "lower_principal t +\<flat> lower_principal u = lower_principal (PDPlus t u)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   204
unfolding lower_plus_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   205
by (simp add: lower_pd.basis_fun_principal
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   206
    lower_pd.basis_fun_mono PDPlus_lower_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   207
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   208
lemma approx_lower_unit [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   209
  "approx n\<cdot>{x}\<flat> = {approx n\<cdot>x}\<flat>"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   210
apply (induct x rule: compact_basis.principal_induct, simp)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   211
apply (simp add: approx_Rep_compact_basis)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   212
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   213
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   214
lemma approx_lower_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   215
  "approx n\<cdot>(xs +\<flat> ys) = (approx n\<cdot>xs) +\<flat> (approx n\<cdot>ys)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   216
by (induct xs ys rule: lower_pd.principal_induct2, simp, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   217
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   218
lemma lower_plus_assoc: "(xs +\<flat> ys) +\<flat> zs = xs +\<flat> (ys +\<flat> zs)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   219
apply (induct xs ys arbitrary: zs rule: lower_pd.principal_induct2, simp, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   220
apply (rule_tac x=zs in lower_pd.principal_induct, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   221
apply (simp add: PDPlus_assoc)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   222
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   223
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   224
lemma lower_plus_commute: "xs +\<flat> ys = ys +\<flat> xs"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   225
apply (induct xs ys rule: lower_pd.principal_induct2, simp, simp)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   226
apply (simp add: PDPlus_commute)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   227
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   228
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   229
lemma lower_plus_absorb: "xs +\<flat> xs = xs"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   230
apply (induct xs rule: lower_pd.principal_induct, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   231
apply (simp add: PDPlus_absorb)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   232
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   233
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   234
interpretation aci_lower_plus: ab_semigroup_idem_mult ["op +\<flat>"]
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   235
  by unfold_locales
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   236
    (rule lower_plus_assoc lower_plus_commute lower_plus_absorb)+
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   237
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   238
lemma lower_plus_left_commute: "xs +\<flat> (ys +\<flat> zs) = ys +\<flat> (xs +\<flat> zs)"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   239
by (rule aci_lower_plus.mult_left_commute)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   240
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   241
lemma lower_plus_left_absorb: "xs +\<flat> (xs +\<flat> ys) = xs +\<flat> ys"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   242
by (rule aci_lower_plus.mult_left_idem)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   243
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   244
lemmas lower_plus_aci = aci_lower_plus.mult_ac_idem
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   245
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   246
lemma lower_plus_less1: "xs \<sqsubseteq> xs +\<flat> ys"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   247
apply (induct xs ys rule: lower_pd.principal_induct2, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   248
apply (simp add: PDPlus_lower_less)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   249
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   250
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   251
lemma lower_plus_less2: "ys \<sqsubseteq> xs +\<flat> ys"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   252
by (subst lower_plus_commute, rule lower_plus_less1)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   253
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   254
lemma lower_plus_least: "\<lbrakk>xs \<sqsubseteq> zs; ys \<sqsubseteq> zs\<rbrakk> \<Longrightarrow> xs +\<flat> ys \<sqsubseteq> zs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   255
apply (subst lower_plus_absorb [of zs, symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   256
apply (erule (1) monofun_cfun [OF monofun_cfun_arg])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   257
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   258
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   259
lemma lower_plus_less_iff:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   260
  "xs +\<flat> ys \<sqsubseteq> zs \<longleftrightarrow> xs \<sqsubseteq> zs \<and> ys \<sqsubseteq> zs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   261
apply safe
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   262
apply (erule trans_less [OF lower_plus_less1])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   263
apply (erule trans_less [OF lower_plus_less2])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   264
apply (erule (1) lower_plus_least)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   265
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   266
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   267
lemma lower_unit_less_plus_iff:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   268
  "{x}\<flat> \<sqsubseteq> ys +\<flat> zs \<longleftrightarrow> {x}\<flat> \<sqsubseteq> ys \<or> {x}\<flat> \<sqsubseteq> zs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   269
 apply (rule iffI)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   270
  apply (subgoal_tac
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   271
    "adm (\<lambda>f. f\<cdot>{x}\<flat> \<sqsubseteq> f\<cdot>ys \<or> f\<cdot>{x}\<flat> \<sqsubseteq> f\<cdot>zs)")
25925
3dc4acca4388 change lemma admD to rule_format
huffman
parents: 25904
diff changeset
   272
   apply (drule admD, rule chain_approx)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   273
    apply (drule_tac f="approx i" in monofun_cfun_arg)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   274
    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
   275
    apply (cut_tac x="approx i\<cdot>ys" in lower_pd.compact_imp_principal, simp)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   276
    apply (cut_tac x="approx i\<cdot>zs" in lower_pd.compact_imp_principal, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   277
    apply (clarify, simp add: lower_le_PDUnit_PDPlus_iff)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   278
   apply simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   279
  apply simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   280
 apply (erule disjE)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   281
  apply (erule trans_less [OF _ lower_plus_less1])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   282
 apply (erule trans_less [OF _ lower_plus_less2])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   283
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   284
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   285
lemma lower_unit_less_iff [simp]: "{x}\<flat> \<sqsubseteq> {y}\<flat> \<longleftrightarrow> x \<sqsubseteq> y"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   286
 apply (rule iffI)
27309
c74270fd72a8 clean up and rename some profinite lemmas
huffman
parents: 27297
diff changeset
   287
  apply (rule profinite_less_ext)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   288
  apply (drule_tac f="approx i" in monofun_cfun_arg, simp)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   289
  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
   290
  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
   291
  apply clarsimp
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   292
 apply (erule monofun_cfun_arg)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   293
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   294
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   295
lemmas lower_pd_less_simps =
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   296
  lower_unit_less_iff
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   297
  lower_plus_less_iff
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   298
  lower_unit_less_plus_iff
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   299
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   300
lemma fooble:
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   301
  fixes f :: "'a::po \<Rightarrow> 'b::po"
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   302
  assumes f: "\<And>x y. f x \<sqsubseteq> f y \<longleftrightarrow> x \<sqsubseteq> y"
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   303
  shows "f x = f y \<longleftrightarrow> x = y"
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   304
unfolding po_eq_conv by (simp add: f)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   305
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   306
lemma lower_unit_eq_iff [simp]: "{x}\<flat> = {y}\<flat> \<longleftrightarrow> x = y"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   307
by (rule lower_unit_less_iff [THEN fooble])
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   308
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   309
lemma lower_unit_strict [simp]: "{\<bottom>}\<flat> = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   310
unfolding inst_lower_pd_pcpo Rep_compact_bot [symmetric] by simp
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   311
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   312
lemma lower_unit_strict_iff [simp]: "{x}\<flat> = \<bottom> \<longleftrightarrow> x = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   313
unfolding lower_unit_strict [symmetric] by (rule lower_unit_eq_iff)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   314
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   315
lemma lower_plus_strict_iff [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   316
  "xs +\<flat> ys = \<bottom> \<longleftrightarrow> xs = \<bottom> \<and> ys = \<bottom>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   317
apply safe
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   318
apply (rule UU_I, erule subst, rule lower_plus_less1)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   319
apply (rule UU_I, erule subst, rule lower_plus_less2)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   320
apply (rule lower_plus_absorb)
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 lower_plus_strict1 [simp]: "\<bottom> +\<flat> ys = ys"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   324
apply (rule antisym_less [OF _ lower_plus_less2])
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   325
apply (simp add: lower_plus_least)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   326
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   327
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   328
lemma lower_plus_strict2 [simp]: "xs +\<flat> \<bottom> = xs"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   329
apply (rule antisym_less [OF _ lower_plus_less1])
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   330
apply (simp add: lower_plus_least)
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   331
done
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   332
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   333
lemma compact_lower_unit_iff [simp]: "compact {x}\<flat> \<longleftrightarrow> compact x"
27309
c74270fd72a8 clean up and rename some profinite lemmas
huffman
parents: 27297
diff changeset
   334
unfolding profinite_compact_iff by simp
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   335
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   336
lemma compact_lower_plus [simp]:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   337
  "\<lbrakk>compact xs; compact ys\<rbrakk> \<Longrightarrow> compact (xs +\<flat> ys)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   338
by (auto dest!: lower_pd.compact_imp_principal)
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   339
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   340
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   341
subsection {* Induction rules *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   342
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   343
lemma lower_pd_induct1:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   344
  assumes P: "adm P"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   345
  assumes unit: "\<And>x. P {x}\<flat>"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   346
  assumes insert:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   347
    "\<And>x ys. \<lbrakk>P {x}\<flat>; P ys\<rbrakk> \<Longrightarrow> P ({x}\<flat> +\<flat> ys)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   348
  shows "P (xs::'a lower_pd)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   349
apply (induct xs rule: lower_pd.principal_induct, rule P)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   350
apply (induct_tac a rule: pd_basis_induct1)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   351
apply (simp only: lower_unit_Rep_compact_basis [symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   352
apply (rule unit)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   353
apply (simp only: lower_unit_Rep_compact_basis [symmetric]
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   354
                  lower_plus_principal [symmetric])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   355
apply (erule insert [OF unit])
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
lemma lower_pd_induct:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   359
  assumes P: "adm P"
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   360
  assumes unit: "\<And>x. P {x}\<flat>"
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   361
  assumes plus: "\<And>xs ys. \<lbrakk>P xs; P ys\<rbrakk> \<Longrightarrow> P (xs +\<flat> ys)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   362
  shows "P (xs::'a lower_pd)"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   363
apply (induct xs rule: lower_pd.principal_induct, rule P)
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   364
apply (induct_tac a rule: pd_basis_induct)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   365
apply (simp only: lower_unit_Rep_compact_basis [symmetric] unit)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   366
apply (simp only: lower_plus_principal [symmetric] plus)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   367
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   368
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   369
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   370
subsection {* Monadic bind *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   371
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   372
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   373
  lower_bind_basis ::
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   374
  "'a pd_basis \<Rightarrow> ('a \<rightarrow> 'b lower_pd) \<rightarrow> 'b lower_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   375
  "lower_bind_basis = fold_pd
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   376
    (\<lambda>a. \<Lambda> f. f\<cdot>(Rep_compact_basis a))
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   377
    (\<lambda>x y. \<Lambda> f. x\<cdot>f +\<flat> y\<cdot>f)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   378
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   379
lemma ACI_lower_bind:
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   380
  "ab_semigroup_idem_mult (\<lambda>x y. \<Lambda> f. x\<cdot>f +\<flat> y\<cdot>f)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   381
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
   382
apply (simp add: lower_plus_assoc)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   383
apply (simp add: lower_plus_commute)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   384
apply (simp add: lower_plus_absorb eta_cfun)
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 lower_bind_basis_simps [simp]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   388
  "lower_bind_basis (PDUnit a) =
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   389
    (\<Lambda> f. f\<cdot>(Rep_compact_basis a))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   390
  "lower_bind_basis (PDPlus t u) =
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   391
    (\<Lambda> f. lower_bind_basis t\<cdot>f +\<flat> lower_bind_basis u\<cdot>f)"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   392
unfolding lower_bind_basis_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   393
apply -
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   394
apply (rule fold_pd_PDUnit [OF ACI_lower_bind])
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   395
apply (rule fold_pd_PDPlus [OF ACI_lower_bind])
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   396
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   397
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   398
lemma lower_bind_basis_mono:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   399
  "t \<le>\<flat> u \<Longrightarrow> lower_bind_basis t \<sqsubseteq> lower_bind_basis u"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   400
unfolding expand_cfun_less
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   401
apply (erule lower_le_induct, safe)
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   402
apply (simp add: monofun_cfun)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   403
apply (simp add: rev_trans_less [OF lower_plus_less1])
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   404
apply (simp add: lower_plus_less_iff)
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
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   408
  lower_bind :: "'a lower_pd \<rightarrow> ('a \<rightarrow> 'b lower_pd) \<rightarrow> 'b lower_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   409
  "lower_bind = lower_pd.basis_fun lower_bind_basis"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   410
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   411
lemma lower_bind_principal [simp]:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   412
  "lower_bind\<cdot>(lower_principal t) = lower_bind_basis t"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   413
unfolding lower_bind_def
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   414
apply (rule lower_pd.basis_fun_principal)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   415
apply (erule lower_bind_basis_mono)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   416
done
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   417
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   418
lemma lower_bind_unit [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   419
  "lower_bind\<cdot>{x}\<flat>\<cdot>f = f\<cdot>x"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   420
by (induct x rule: compact_basis.principal_induct, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   421
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   422
lemma lower_bind_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   423
  "lower_bind\<cdot>(xs +\<flat> ys)\<cdot>f = lower_bind\<cdot>xs\<cdot>f +\<flat> lower_bind\<cdot>ys\<cdot>f"
27289
c49d427867aa move lemmas into locales;
huffman
parents: 27267
diff changeset
   424
by (induct xs ys rule: lower_pd.principal_induct2, simp, simp, simp)
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   425
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   426
lemma lower_bind_strict [simp]: "lower_bind\<cdot>\<bottom>\<cdot>f = f\<cdot>\<bottom>"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   427
unfolding lower_unit_strict [symmetric] by (rule lower_bind_unit)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   428
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   429
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   430
subsection {* Map and join *}
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   431
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   432
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   433
  lower_map :: "('a \<rightarrow> 'b) \<rightarrow> 'a lower_pd \<rightarrow> 'b lower_pd" where
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   434
  "lower_map = (\<Lambda> f xs. lower_bind\<cdot>xs\<cdot>(\<Lambda> x. {f\<cdot>x}\<flat>))"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   435
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   436
definition
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   437
  lower_join :: "'a lower_pd lower_pd \<rightarrow> 'a lower_pd" where
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   438
  "lower_join = (\<Lambda> xss. lower_bind\<cdot>xss\<cdot>(\<Lambda> xs. xs))"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   439
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   440
lemma lower_map_unit [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   441
  "lower_map\<cdot>f\<cdot>{x}\<flat> = {f\<cdot>x}\<flat>"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   442
unfolding lower_map_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   443
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   444
lemma lower_map_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   445
  "lower_map\<cdot>f\<cdot>(xs +\<flat> ys) = lower_map\<cdot>f\<cdot>xs +\<flat> lower_map\<cdot>f\<cdot>ys"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   446
unfolding lower_map_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   447
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   448
lemma lower_join_unit [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   449
  "lower_join\<cdot>{xs}\<flat> = xs"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   450
unfolding lower_join_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   451
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   452
lemma lower_join_plus [simp]:
26927
8684b5240f11 rename locales;
huffman
parents: 26806
diff changeset
   453
  "lower_join\<cdot>(xss +\<flat> yss) = lower_join\<cdot>xss +\<flat> lower_join\<cdot>yss"
25904
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   454
unfolding lower_join_def by simp
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   455
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   456
lemma lower_map_ident: "lower_map\<cdot>(\<Lambda> x. x)\<cdot>xs = xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   457
by (induct xs rule: lower_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   458
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   459
lemma lower_map_map:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   460
  "lower_map\<cdot>f\<cdot>(lower_map\<cdot>g\<cdot>xs) = lower_map\<cdot>(\<Lambda> x. f\<cdot>(g\<cdot>x))\<cdot>xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   461
by (induct xs rule: lower_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   462
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   463
lemma lower_join_map_unit:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   464
  "lower_join\<cdot>(lower_map\<cdot>lower_unit\<cdot>xs) = xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   465
by (induct xs rule: lower_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   466
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   467
lemma lower_join_map_join:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   468
  "lower_join\<cdot>(lower_map\<cdot>lower_join\<cdot>xsss) = lower_join\<cdot>(lower_join\<cdot>xsss)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   469
by (induct xsss rule: lower_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   470
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   471
lemma lower_join_map_map:
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   472
  "lower_join\<cdot>(lower_map\<cdot>(lower_map\<cdot>f)\<cdot>xss) =
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   473
   lower_map\<cdot>f\<cdot>(lower_join\<cdot>xss)"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   474
by (induct xss rule: lower_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   475
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   476
lemma lower_map_approx: "lower_map\<cdot>(approx n)\<cdot>xs = approx n\<cdot>xs"
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   477
by (induct xs rule: lower_pd_induct, simp_all)
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   478
8161f137b0e9 new theory of powerdomains
huffman
parents:
diff changeset
   479
end