src/HOLCF/Domain.thy
author wenzelm
Thu, 31 May 2007 14:01:58 +0200
changeset 23152 9497234a2743
parent 18846 89b0fbbc4d8e
child 23376 53317a1ec8b2
permissions -rw-r--r--
moved HOLCF tools to canonical place;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/Domain.thy
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     2
    ID:         $Id$
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     3
    Author:     Brian Huffman
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     4
*)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     5
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     6
header {* Domain package *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     7
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
     8
theory Domain
16230
9c9d9ba41bac fix imports
huffman
parents: 16223
diff changeset
     9
imports Ssum Sprod Up One Tr Fixrec
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    10
begin
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    11
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    12
defaultsort pcpo
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    13
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    14
subsection {* Continuous isomorphisms *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    15
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    16
text {* A locale for continuous isomorphisms *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    17
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    18
locale iso =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    19
  fixes abs :: "'a \<rightarrow> 'b"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    20
  fixes rep :: "'b \<rightarrow> 'a"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    21
  assumes abs_iso [simp]: "rep\<cdot>(abs\<cdot>x) = x"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    22
  assumes rep_iso [simp]: "abs\<cdot>(rep\<cdot>y) = y"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    23
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    24
lemma (in iso) swap: "iso rep abs"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    25
by (rule iso.intro [OF rep_iso abs_iso])
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    26
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    27
lemma (in iso) abs_less: "(abs\<cdot>x \<sqsubseteq> abs\<cdot>y) = (x \<sqsubseteq> y)"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    28
proof
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    29
  assume "abs\<cdot>x \<sqsubseteq> abs\<cdot>y"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    30
  hence "rep\<cdot>(abs\<cdot>x) \<sqsubseteq> rep\<cdot>(abs\<cdot>y)" by (rule monofun_cfun_arg)
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    31
  thus "x \<sqsubseteq> y" by simp
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    32
next
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    33
  assume "x \<sqsubseteq> y"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    34
  thus "abs\<cdot>x \<sqsubseteq> abs\<cdot>y" by (rule monofun_cfun_arg)
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    35
qed
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    36
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    37
lemma (in iso) rep_less: "(rep\<cdot>x \<sqsubseteq> rep\<cdot>y) = (x \<sqsubseteq> y)"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    38
by (rule iso.abs_less [OF swap])
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    39
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    40
lemma (in iso) abs_eq: "(abs\<cdot>x = abs\<cdot>y) = (x = y)"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    41
by (simp add: po_eq_conv abs_less)
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    42
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    43
lemma (in iso) rep_eq: "(rep\<cdot>x = rep\<cdot>y) = (x = y)"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    44
by (rule iso.abs_eq [OF swap])
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    45
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    46
lemma (in iso) abs_strict: "abs\<cdot>\<bottom> = \<bottom>"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    47
proof -
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    48
  have "\<bottom> \<sqsubseteq> rep\<cdot>\<bottom>" ..
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    49
  hence "abs\<cdot>\<bottom> \<sqsubseteq> abs\<cdot>(rep\<cdot>\<bottom>)" by (rule monofun_cfun_arg)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    50
  hence "abs\<cdot>\<bottom> \<sqsubseteq> \<bottom>" by simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    51
  thus ?thesis by (rule UU_I)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    52
qed
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    53
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    54
lemma (in iso) rep_strict: "rep\<cdot>\<bottom> = \<bottom>"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    55
by (rule iso.abs_strict [OF swap])
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    56
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    57
lemma (in iso) abs_defin': "abs\<cdot>x = \<bottom> \<Longrightarrow> x = \<bottom>"
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    58
proof -
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    59
  have "x = rep\<cdot>(abs\<cdot>x)" by simp
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    60
  also assume "abs\<cdot>x = \<bottom>"
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    61
  also note rep_strict
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    62
  finally show "x = \<bottom>" .
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    63
qed
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    64
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    65
lemma (in iso) rep_defin': "rep\<cdot>z = \<bottom> \<Longrightarrow> z = \<bottom>"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    66
by (rule iso.abs_defin' [OF swap])
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    67
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    68
lemma (in iso) abs_defined: "z \<noteq> \<bottom> \<Longrightarrow> abs\<cdot>z \<noteq> \<bottom>"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    69
by (erule contrapos_nn, erule abs_defin')
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    70
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    71
lemma (in iso) rep_defined: "z \<noteq> \<bottom> \<Longrightarrow> rep\<cdot>z \<noteq> \<bottom>"
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    72
by (rule iso.abs_defined [OF iso.swap])
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    73
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    74
lemma (in iso) abs_defined_iff: "(abs\<cdot>x = \<bottom>) = (x = \<bottom>)"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    75
by (auto elim: abs_defin' intro: abs_strict)
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    76
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    77
lemma (in iso) rep_defined_iff: "(rep\<cdot>x = \<bottom>) = (x = \<bottom>)"
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
    78
by (rule iso.abs_defined_iff [OF iso.swap])
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    79
17836
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    80
lemma (in iso) compact_abs_rev: "compact (abs\<cdot>x) \<Longrightarrow> compact x"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    81
proof (unfold compact_def)
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    82
  assume "adm (\<lambda>y. \<not> abs\<cdot>x \<sqsubseteq> y)"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    83
  with cont_Rep_CFun2
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    84
  have "adm (\<lambda>y. \<not> abs\<cdot>x \<sqsubseteq> abs\<cdot>y)" by (rule adm_subst)
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    85
  thus "adm (\<lambda>y. \<not> x \<sqsubseteq> y)" using abs_less by simp
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    86
qed
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    87
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    88
lemma (in iso) compact_rep_rev: "compact (rep\<cdot>x) \<Longrightarrow> compact x"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    89
by (rule iso.compact_abs_rev [OF iso.swap])
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    90
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    91
lemma (in iso) compact_abs: "compact x \<Longrightarrow> compact (abs\<cdot>x)"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    92
by (rule compact_rep_rev, simp)
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    93
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    94
lemma (in iso) compact_rep: "compact x \<Longrightarrow> compact (rep\<cdot>x)"
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    95
by (rule iso.compact_abs [OF iso.swap])
5d9c9e284d16 added compactness theorems in locale iso
huffman
parents: 17835
diff changeset
    96
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    97
lemma (in iso) iso_swap: "(x = abs\<cdot>y) = (rep\<cdot>x = y)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    98
proof
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
    99
  assume "x = abs\<cdot>y"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   100
  hence "rep\<cdot>x = rep\<cdot>(abs\<cdot>y)" by simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   101
  thus "rep\<cdot>x = y" by simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   102
next
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   103
  assume "rep\<cdot>x = y"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   104
  hence "abs\<cdot>(rep\<cdot>x) = abs\<cdot>y" by simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   105
  thus "x = abs\<cdot>y" by simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   106
qed
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   107
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   108
subsection {* Casedist *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   109
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   110
lemma ex_one_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   111
  "(\<exists>x. P x \<and> x \<noteq> \<bottom>) = P ONE"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   112
 apply safe
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   113
  apply (rule_tac p=x in oneE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   114
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   115
  apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   116
 apply force
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   117
done
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   118
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   119
lemma ex_up_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   120
  "(\<exists>x. P x \<and> x \<noteq> \<bottom>) = (\<exists>x. P (up\<cdot>x))"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   121
 apply safe
16754
1b979f8b7e8e renamed upE1 to upE
huffman
parents: 16320
diff changeset
   122
  apply (rule_tac p=x in upE)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   123
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   124
  apply fast
16320
89917621becf fixed renamed lemma
huffman
parents: 16230
diff changeset
   125
 apply (force intro!: up_defined)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   126
done
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   127
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   128
lemma ex_sprod_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   129
 "(\<exists>y. P y \<and> y \<noteq> \<bottom>) =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   130
  (\<exists>x y. (P (:x, y:) \<and> x \<noteq> \<bottom>) \<and> y \<noteq> \<bottom>)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   131
 apply safe
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   132
  apply (rule_tac p=y in sprodE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   133
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   134
  apply fast
16217
96f0c8546265 renamed defined lemmas
huffman
parents: 16121
diff changeset
   135
 apply (force intro!: spair_defined)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   136
done
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   137
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   138
lemma ex_sprod_up_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   139
 "(\<exists>y. P y \<and> y \<noteq> \<bottom>) =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   140
  (\<exists>x y. P (:up\<cdot>x, y:) \<and> y \<noteq> \<bottom>)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   141
 apply safe
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   142
  apply (rule_tac p=y in sprodE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   143
   apply simp
16754
1b979f8b7e8e renamed upE1 to upE
huffman
parents: 16320
diff changeset
   144
  apply (rule_tac p=x in upE)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   145
   apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   146
  apply fast
16217
96f0c8546265 renamed defined lemmas
huffman
parents: 16121
diff changeset
   147
 apply (force intro!: spair_defined)
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   148
done
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   149
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   150
lemma ex_ssum_defined_iff:
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   151
 "(\<exists>x. P x \<and> x \<noteq> \<bottom>) =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   152
 ((\<exists>x. P (sinl\<cdot>x) \<and> x \<noteq> \<bottom>) \<or>
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   153
  (\<exists>x. P (sinr\<cdot>x) \<and> x \<noteq> \<bottom>))"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   154
 apply (rule iffI)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   155
  apply (erule exE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   156
  apply (erule conjE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   157
  apply (rule_tac p=x in ssumE)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   158
    apply simp
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   159
   apply (rule disjI1, fast)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   160
  apply (rule disjI2, fast)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   161
 apply (erule disjE)
17835
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
   162
  apply force
74e6140e5f1f added several theorems in locale iso
huffman
parents: 16754
diff changeset
   163
 apply force
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   164
done
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   165
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   166
lemma exh_start: "p = \<bottom> \<or> (\<exists>x. p = x \<and> x \<noteq> \<bottom>)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   167
by auto
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   168
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   169
lemmas ex_defined_iffs =
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   170
   ex_ssum_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   171
   ex_sprod_up_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   172
   ex_sprod_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   173
   ex_up_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   174
   ex_one_defined_iff
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   175
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   176
text {* Rules for turning exh into casedist *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   177
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   178
lemma exh_casedist0: "\<lbrakk>R; R \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P" (* like make_elim *)
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   179
by auto
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   180
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   181
lemma exh_casedist1: "((P \<or> Q \<Longrightarrow> R) \<Longrightarrow> S) \<equiv> (\<lbrakk>P \<Longrightarrow> R; Q \<Longrightarrow> R\<rbrakk> \<Longrightarrow> S)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   182
by rule auto
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   183
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   184
lemma exh_casedist2: "(\<exists>x. P x \<Longrightarrow> Q) \<equiv> (\<And>x. P x \<Longrightarrow> Q)"
18846
89b0fbbc4d8e tuned proof;
wenzelm
parents: 18487
diff changeset
   185
by rule auto
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   186
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   187
lemma exh_casedist3: "(P \<and> Q \<Longrightarrow> R) \<equiv> (P \<Longrightarrow> Q \<Longrightarrow> R)"
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   188
by rule auto
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   189
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   190
lemmas exh_casedists = exh_casedist1 exh_casedist2 exh_casedist3
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   191
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   192
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   193
subsection {* Setting up the package *}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   194
16121
wenzelm
parents: 16070
diff changeset
   195
ML {*
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   196
val iso_intro       = thm "iso.intro";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   197
val iso_abs_iso     = thm "iso.abs_iso";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   198
val iso_rep_iso     = thm "iso.rep_iso";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   199
val iso_abs_strict  = thm "iso.abs_strict";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   200
val iso_rep_strict  = thm "iso.rep_strict";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   201
val iso_abs_defin'  = thm "iso.abs_defin'";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   202
val iso_rep_defin'  = thm "iso.rep_defin'";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   203
val iso_abs_defined = thm "iso.abs_defined";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   204
val iso_rep_defined = thm "iso.rep_defined";
17839
060dd0213f94 add ML bindings for compactness lemmas
huffman
parents: 17836
diff changeset
   205
val iso_compact_abs = thm "iso.compact_abs";
060dd0213f94 add ML bindings for compactness lemmas
huffman
parents: 17836
diff changeset
   206
val iso_compact_rep = thm "iso.compact_rep";
15741
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   207
val iso_iso_swap    = thm "iso.iso_swap";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   208
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   209
val exh_start = thm "exh_start";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   210
val ex_defined_iffs = thms "ex_defined_iffs";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   211
val exh_casedist0 = thm "exh_casedist0";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   212
val exh_casedists = thms "exh_casedists";
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   213
*}
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   214
29a78517543f New file for theorems used by the domain package
huffman
parents:
diff changeset
   215
end