author | wenzelm |
Mon, 26 Jun 2023 23:20:32 +0200 | |
changeset 78209 | 50c5be88ad59 |
parent 73968 | 0274d442b7ea |
child 79971 | 033f90dc441d |
permissions | -rw-r--r-- |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
1 |
(* Title: HOL/Library/RBT_Set.thy |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
2 |
Author: Ondrej Kuncar |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
3 |
*) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
4 |
|
60500 | 5 |
section \<open>Implementation of sets using RBT trees\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
6 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
7 |
theory RBT_Set |
51115
7dbd6832a689
consolidation of library theories on product orders
haftmann
parents:
50996
diff
changeset
|
8 |
imports RBT Product_Lexorder |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
9 |
begin |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
10 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
11 |
(* |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
12 |
Users should be aware that by including this file all code equations |
58301
de95aeedf49e
fixed situation in 'primrec' whereby the original value of a constructor argument of nested type was not translated correctly to a 'map fst'
blanchet
parents:
57816
diff
changeset
|
13 |
outside of List.thy using 'a list as an implementation of sets cannot be |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
14 |
used for code generation. If such equations are not needed, they can be |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
15 |
deleted from the code generator. Otherwise, a user has to provide their |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
16 |
own equations using RBT trees. |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
17 |
*) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
18 |
|
60500 | 19 |
section \<open>Definition of code datatype constructors\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
20 |
|
61076 | 21 |
definition Set :: "('a::linorder, unit) rbt \<Rightarrow> 'a set" |
56019 | 22 |
where "Set t = {x . RBT.lookup t x = Some ()}" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
23 |
|
61076 | 24 |
definition Coset :: "('a::linorder, unit) rbt \<Rightarrow> 'a set" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
25 |
where [simp]: "Coset t = - Set t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
26 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
27 |
|
60500 | 28 |
section \<open>Deletion of already existing code equations\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
29 |
|
66148 | 30 |
declare [[code drop: Set.empty Set.is_empty uminus_set_inst.uminus_set |
31 |
Set.member Set.insert Set.remove UNIV Set.filter image |
|
32 |
Set.subset_eq Ball Bex can_select Set.union minus_set_inst.minus_set Set.inter |
|
33 |
card the_elem Pow sum prod Product_Type.product Id_on |
|
34 |
Image trancl relcomp wf Min Inf_fin Max Sup_fin |
|
35 |
"(Inf :: 'a set set \<Rightarrow> 'a set)" "(Sup :: 'a set set \<Rightarrow> 'a set)" |
|
36 |
sorted_list_of_set List.map_project List.Bleast]] |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
37 |
|
53955 | 38 |
|
60500 | 39 |
section \<open>Lemmas\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
40 |
|
60500 | 41 |
subsection \<open>Auxiliary lemmas\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
42 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
43 |
lemma [simp]: "x \<noteq> Some () \<longleftrightarrow> x = None" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
44 |
by (auto simp: not_Some_eq[THEN iffD1]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
45 |
|
56019 | 46 |
lemma Set_set_keys: "Set x = dom (RBT.lookup x)" |
49928 | 47 |
by (auto simp: Set_def) |
48 |
||
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
49 |
lemma finite_Set [simp, intro!]: "finite (Set x)" |
49928 | 50 |
by (simp add: Set_set_keys) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
51 |
|
56019 | 52 |
lemma set_keys: "Set t = set(RBT.keys t)" |
49928 | 53 |
by (simp add: Set_set_keys lookup_keys) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
54 |
|
60500 | 55 |
subsection \<open>fold and filter\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
56 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
57 |
lemma finite_fold_rbt_fold_eq: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
58 |
assumes "comp_fun_commute f" |
56019 | 59 |
shows "Finite_Set.fold f A (set (RBT.entries t)) = RBT.fold (curry f) t A" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
60 |
proof - |
73832 | 61 |
interpret comp_fun_commute: comp_fun_commute f |
62 |
by (fact assms) |
|
56019 | 63 |
have *: "remdups (RBT.entries t) = RBT.entries t" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
64 |
using distinct_entries distinct_map by (auto intro: distinct_remdups_id) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
65 |
show ?thesis using assms by (auto simp: fold_def_alt comp_fun_commute.fold_set_fold_remdups *) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
66 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
67 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
68 |
definition fold_keys :: "('a :: linorder \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a, _) rbt \<Rightarrow> 'b \<Rightarrow> 'b" |
56019 | 69 |
where [code_unfold]:"fold_keys f t A = RBT.fold (\<lambda>k _ t. f k t) t A" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
70 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
71 |
lemma fold_keys_def_alt: |
56019 | 72 |
"fold_keys f t s = List.fold f (RBT.keys t) s" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
73 |
by (auto simp: fold_map o_def split_def fold_def_alt keys_def_alt fold_keys_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
74 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
75 |
lemma finite_fold_fold_keys: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
76 |
assumes "comp_fun_commute f" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
77 |
shows "Finite_Set.fold f A (Set t) = fold_keys f t A" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
78 |
using assms |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
79 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
80 |
interpret comp_fun_commute f by fact |
56019 | 81 |
have "set (RBT.keys t) = fst ` (set (RBT.entries t))" by (auto simp: fst_eq_Domain keys_entries) |
82 |
moreover have "inj_on fst (set (RBT.entries t))" using distinct_entries distinct_map by auto |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
83 |
ultimately show ?thesis |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
84 |
by (auto simp add: set_keys fold_keys_def curry_def fold_image finite_fold_rbt_fold_eq |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
85 |
comp_comp_fun_commute) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
86 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
87 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
88 |
definition rbt_filter :: "('a :: linorder \<Rightarrow> bool) \<Rightarrow> ('a, 'b) rbt \<Rightarrow> 'a set" where |
56019 | 89 |
"rbt_filter P t = RBT.fold (\<lambda>k _ A'. if P k then Set.insert k A' else A') t {}" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
90 |
|
49758
718f10c8bbfc
use Set.filter instead of Finite_Set.filter, which is removed then
kuncar
parents:
49757
diff
changeset
|
91 |
lemma Set_filter_rbt_filter: |
718f10c8bbfc
use Set.filter instead of Finite_Set.filter, which is removed then
kuncar
parents:
49757
diff
changeset
|
92 |
"Set.filter P (Set t) = rbt_filter P t" |
718f10c8bbfc
use Set.filter instead of Finite_Set.filter, which is removed then
kuncar
parents:
49757
diff
changeset
|
93 |
by (simp add: fold_keys_def Set_filter_fold rbt_filter_def |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
94 |
finite_fold_fold_keys[OF comp_fun_commute_filter_fold]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
95 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
96 |
|
60500 | 97 |
subsection \<open>foldi and Ball\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
98 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
99 |
lemma Ball_False: "RBT_Impl.fold (\<lambda>k v s. s \<and> P k) t False = False" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
100 |
by (induction t) auto |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
101 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
102 |
lemma rbt_foldi_fold_conj: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
103 |
"RBT_Impl.foldi (\<lambda>s. s = True) (\<lambda>k v s. s \<and> P k) t val = RBT_Impl.fold (\<lambda>k v s. s \<and> P k) t val" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
104 |
proof (induction t arbitrary: val) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
105 |
case (Branch c t1) then show ?case |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
106 |
by (cases "RBT_Impl.fold (\<lambda>k v s. s \<and> P k) t1 True") (simp_all add: Ball_False) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
107 |
qed simp |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
108 |
|
56019 | 109 |
lemma foldi_fold_conj: "RBT.foldi (\<lambda>s. s = True) (\<lambda>k v s. s \<and> P k) t val = fold_keys (\<lambda>k s. s \<and> P k) t val" |
110 |
unfolding fold_keys_def including rbt.lifting by transfer (rule rbt_foldi_fold_conj) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
111 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
112 |
|
60500 | 113 |
subsection \<open>foldi and Bex\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
114 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
115 |
lemma Bex_True: "RBT_Impl.fold (\<lambda>k v s. s \<or> P k) t True = True" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
116 |
by (induction t) auto |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
117 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
118 |
lemma rbt_foldi_fold_disj: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
119 |
"RBT_Impl.foldi (\<lambda>s. s = False) (\<lambda>k v s. s \<or> P k) t val = RBT_Impl.fold (\<lambda>k v s. s \<or> P k) t val" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
120 |
proof (induction t arbitrary: val) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
121 |
case (Branch c t1) then show ?case |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
122 |
by (cases "RBT_Impl.fold (\<lambda>k v s. s \<or> P k) t1 False") (simp_all add: Bex_True) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
123 |
qed simp |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
124 |
|
56019 | 125 |
lemma foldi_fold_disj: "RBT.foldi (\<lambda>s. s = False) (\<lambda>k v s. s \<or> P k) t val = fold_keys (\<lambda>k s. s \<or> P k) t val" |
126 |
unfolding fold_keys_def including rbt.lifting by transfer (rule rbt_foldi_fold_disj) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
127 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
128 |
|
60500 | 129 |
subsection \<open>folding over non empty trees and selecting the minimal and maximal element\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
130 |
|
67408 | 131 |
subsubsection \<open>concrete\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
132 |
|
67408 | 133 |
text \<open>The concrete part is here because it's probably not general enough to be moved to \<open>RBT_Impl\<close>\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
134 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
135 |
definition rbt_fold1_keys :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a::linorder, 'b) RBT_Impl.rbt \<Rightarrow> 'a" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
136 |
where "rbt_fold1_keys f t = List.fold f (tl(RBT_Impl.keys t)) (hd(RBT_Impl.keys t))" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
137 |
|
67408 | 138 |
|
139 |
paragraph \<open>minimum\<close> |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
140 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
141 |
definition rbt_min :: "('a::linorder, unit) RBT_Impl.rbt \<Rightarrow> 'a" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
142 |
where "rbt_min t = rbt_fold1_keys min t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
143 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
144 |
lemma key_le_right: "rbt_sorted (Branch c lt k v rt) \<Longrightarrow> (\<And>x. x \<in>set (RBT_Impl.keys rt) \<Longrightarrow> k \<le> x)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
145 |
by (auto simp: rbt_greater_prop less_imp_le) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
146 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
147 |
lemma left_le_key: "rbt_sorted (Branch c lt k v rt) \<Longrightarrow> (\<And>x. x \<in>set (RBT_Impl.keys lt) \<Longrightarrow> x \<le> k)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
148 |
by (auto simp: rbt_less_prop less_imp_le) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
149 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
150 |
lemma fold_min_triv: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
151 |
fixes k :: "_ :: linorder" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
152 |
shows "(\<forall>x\<in>set xs. k \<le> x) \<Longrightarrow> List.fold min xs k = k" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
153 |
by (induct xs) (auto simp add: min_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
154 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
155 |
lemma rbt_min_simps: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
156 |
"is_rbt (Branch c RBT_Impl.Empty k v rt) \<Longrightarrow> rbt_min (Branch c RBT_Impl.Empty k v rt) = k" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
157 |
by (auto intro: fold_min_triv dest: key_le_right is_rbt_rbt_sorted simp: rbt_fold1_keys_def rbt_min_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
158 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
159 |
fun rbt_min_opt where |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
160 |
"rbt_min_opt (Branch c RBT_Impl.Empty k v rt) = k" | |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
161 |
"rbt_min_opt (Branch c (Branch lc llc lk lv lrt) k v rt) = rbt_min_opt (Branch lc llc lk lv lrt)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
162 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
163 |
lemma rbt_min_opt_Branch: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
164 |
"t1 \<noteq> rbt.Empty \<Longrightarrow> rbt_min_opt (Branch c t1 k () t2) = rbt_min_opt t1" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
165 |
by (cases t1) auto |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
166 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
167 |
lemma rbt_min_opt_induct [case_names empty left_empty left_non_empty]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
168 |
fixes t :: "('a :: linorder, unit) RBT_Impl.rbt" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
169 |
assumes "P rbt.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
170 |
assumes "\<And>color t1 a b t2. P t1 \<Longrightarrow> P t2 \<Longrightarrow> t1 = rbt.Empty \<Longrightarrow> P (Branch color t1 a b t2)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
171 |
assumes "\<And>color t1 a b t2. P t1 \<Longrightarrow> P t2 \<Longrightarrow> t1 \<noteq> rbt.Empty \<Longrightarrow> P (Branch color t1 a b t2)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
172 |
shows "P t" |
63649 | 173 |
using assms |
174 |
proof (induct t) |
|
175 |
case Empty |
|
176 |
then show ?case by simp |
|
177 |
next |
|
178 |
case (Branch x1 t1 x3 x4 t2) |
|
179 |
then show ?case by (cases "t1 = rbt.Empty") simp_all |
|
180 |
qed |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
181 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
182 |
lemma rbt_min_opt_in_set: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
183 |
fixes t :: "('a :: linorder, unit) RBT_Impl.rbt" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
184 |
assumes "t \<noteq> rbt.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
185 |
shows "rbt_min_opt t \<in> set (RBT_Impl.keys t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
186 |
using assms by (induction t rule: rbt_min_opt.induct) (auto) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
187 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
188 |
lemma rbt_min_opt_is_min: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
189 |
fixes t :: "('a :: linorder, unit) RBT_Impl.rbt" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
190 |
assumes "rbt_sorted t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
191 |
assumes "t \<noteq> rbt.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
192 |
shows "\<And>y. y \<in> set (RBT_Impl.keys t) \<Longrightarrow> y \<ge> rbt_min_opt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
193 |
using assms |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
194 |
proof (induction t rule: rbt_min_opt_induct) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
195 |
case empty |
60580 | 196 |
then show ?case by simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
197 |
next |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
198 |
case left_empty |
60580 | 199 |
then show ?case by (auto intro: key_le_right simp del: rbt_sorted.simps) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
200 |
next |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
201 |
case (left_non_empty c t1 k v t2 y) |
60580 | 202 |
then consider "y = k" | "y \<in> set (RBT_Impl.keys t1)" | "y \<in> set (RBT_Impl.keys t2)" |
203 |
by auto |
|
204 |
then show ?case |
|
205 |
proof cases |
|
206 |
case 1 |
|
207 |
with left_non_empty show ?thesis |
|
208 |
by (auto simp add: rbt_min_opt_Branch intro: left_le_key rbt_min_opt_in_set) |
|
209 |
next |
|
210 |
case 2 |
|
211 |
with left_non_empty show ?thesis |
|
212 |
by (auto simp add: rbt_min_opt_Branch) |
|
213 |
next |
|
214 |
case y: 3 |
|
215 |
have "rbt_min_opt t1 \<le> k" |
|
216 |
using left_non_empty by (simp add: left_le_key rbt_min_opt_in_set) |
|
217 |
moreover have "k \<le> y" |
|
218 |
using left_non_empty y by (simp add: key_le_right) |
|
219 |
ultimately show ?thesis |
|
220 |
using left_non_empty y by (simp add: rbt_min_opt_Branch) |
|
221 |
qed |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
222 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
223 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
224 |
lemma rbt_min_eq_rbt_min_opt: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
225 |
assumes "t \<noteq> RBT_Impl.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
226 |
assumes "is_rbt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
227 |
shows "rbt_min t = rbt_min_opt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
228 |
proof - |
51489 | 229 |
from assms have "hd (RBT_Impl.keys t) # tl (RBT_Impl.keys t) = RBT_Impl.keys t" by (cases t) simp_all |
230 |
with assms show ?thesis |
|
231 |
by (simp add: rbt_min_def rbt_fold1_keys_def rbt_min_opt_is_min |
|
51540
eea5c4ca4a0e
explicit sublocale dependency for Min/Max yields more appropriate Min/Max prefix for a couple of facts
haftmann
parents:
51489
diff
changeset
|
232 |
Min.set_eq_fold [symmetric] Min_eqI rbt_min_opt_in_set) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
233 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
234 |
|
67408 | 235 |
|
236 |
paragraph \<open>maximum\<close> |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
237 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
238 |
definition rbt_max :: "('a::linorder, unit) RBT_Impl.rbt \<Rightarrow> 'a" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
239 |
where "rbt_max t = rbt_fold1_keys max t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
240 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
241 |
lemma fold_max_triv: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
242 |
fixes k :: "_ :: linorder" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
243 |
shows "(\<forall>x\<in>set xs. x \<le> k) \<Longrightarrow> List.fold max xs k = k" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
244 |
by (induct xs) (auto simp add: max_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
245 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
246 |
lemma fold_max_rev_eq: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
247 |
fixes xs :: "('a :: linorder) list" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
248 |
assumes "xs \<noteq> []" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
249 |
shows "List.fold max (tl xs) (hd xs) = List.fold max (tl (rev xs)) (hd (rev xs))" |
51540
eea5c4ca4a0e
explicit sublocale dependency for Min/Max yields more appropriate Min/Max prefix for a couple of facts
haftmann
parents:
51489
diff
changeset
|
250 |
using assms by (simp add: Max.set_eq_fold [symmetric]) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
251 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
252 |
lemma rbt_max_simps: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
253 |
assumes "is_rbt (Branch c lt k v RBT_Impl.Empty)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
254 |
shows "rbt_max (Branch c lt k v RBT_Impl.Empty) = k" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
255 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
256 |
have "List.fold max (tl (rev(RBT_Impl.keys lt @ [k]))) (hd (rev(RBT_Impl.keys lt @ [k]))) = k" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
257 |
using assms by (auto intro!: fold_max_triv dest!: left_le_key is_rbt_rbt_sorted) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
258 |
then show ?thesis by (auto simp add: rbt_max_def rbt_fold1_keys_def fold_max_rev_eq) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
259 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
260 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
261 |
fun rbt_max_opt where |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
262 |
"rbt_max_opt (Branch c lt k v RBT_Impl.Empty) = k" | |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
263 |
"rbt_max_opt (Branch c lt k v (Branch rc rlc rk rv rrt)) = rbt_max_opt (Branch rc rlc rk rv rrt)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
264 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
265 |
lemma rbt_max_opt_Branch: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
266 |
"t2 \<noteq> rbt.Empty \<Longrightarrow> rbt_max_opt (Branch c t1 k () t2) = rbt_max_opt t2" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
267 |
by (cases t2) auto |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
268 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
269 |
lemma rbt_max_opt_induct [case_names empty right_empty right_non_empty]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
270 |
fixes t :: "('a :: linorder, unit) RBT_Impl.rbt" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
271 |
assumes "P rbt.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
272 |
assumes "\<And>color t1 a b t2. P t1 \<Longrightarrow> P t2 \<Longrightarrow> t2 = rbt.Empty \<Longrightarrow> P (Branch color t1 a b t2)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
273 |
assumes "\<And>color t1 a b t2. P t1 \<Longrightarrow> P t2 \<Longrightarrow> t2 \<noteq> rbt.Empty \<Longrightarrow> P (Branch color t1 a b t2)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
274 |
shows "P t" |
63649 | 275 |
using assms |
276 |
proof (induct t) |
|
277 |
case Empty |
|
278 |
then show ?case by simp |
|
279 |
next |
|
280 |
case (Branch x1 t1 x3 x4 t2) |
|
281 |
then show ?case by (cases "t2 = rbt.Empty") simp_all |
|
282 |
qed |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
283 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
284 |
lemma rbt_max_opt_in_set: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
285 |
fixes t :: "('a :: linorder, unit) RBT_Impl.rbt" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
286 |
assumes "t \<noteq> rbt.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
287 |
shows "rbt_max_opt t \<in> set (RBT_Impl.keys t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
288 |
using assms by (induction t rule: rbt_max_opt.induct) (auto) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
289 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
290 |
lemma rbt_max_opt_is_max: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
291 |
fixes t :: "('a :: linorder, unit) RBT_Impl.rbt" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
292 |
assumes "rbt_sorted t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
293 |
assumes "t \<noteq> rbt.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
294 |
shows "\<And>y. y \<in> set (RBT_Impl.keys t) \<Longrightarrow> y \<le> rbt_max_opt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
295 |
using assms |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
296 |
proof (induction t rule: rbt_max_opt_induct) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
297 |
case empty |
60580 | 298 |
then show ?case by simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
299 |
next |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
300 |
case right_empty |
60580 | 301 |
then show ?case by (auto intro: left_le_key simp del: rbt_sorted.simps) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
302 |
next |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
303 |
case (right_non_empty c t1 k v t2 y) |
60580 | 304 |
then consider "y = k" | "y \<in> set (RBT_Impl.keys t2)" | "y \<in> set (RBT_Impl.keys t1)" |
305 |
by auto |
|
306 |
then show ?case |
|
307 |
proof cases |
|
308 |
case 1 |
|
309 |
with right_non_empty show ?thesis |
|
310 |
by (auto simp add: rbt_max_opt_Branch intro: key_le_right rbt_max_opt_in_set) |
|
311 |
next |
|
312 |
case 2 |
|
313 |
with right_non_empty show ?thesis |
|
314 |
by (auto simp add: rbt_max_opt_Branch) |
|
315 |
next |
|
316 |
case y: 3 |
|
317 |
have "rbt_max_opt t2 \<ge> k" |
|
318 |
using right_non_empty by (simp add: key_le_right rbt_max_opt_in_set) |
|
319 |
moreover have "y \<le> k" |
|
320 |
using right_non_empty y by (simp add: left_le_key) |
|
321 |
ultimately show ?thesis |
|
322 |
using right_non_empty by (simp add: rbt_max_opt_Branch) |
|
323 |
qed |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
324 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
325 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
326 |
lemma rbt_max_eq_rbt_max_opt: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
327 |
assumes "t \<noteq> RBT_Impl.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
328 |
assumes "is_rbt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
329 |
shows "rbt_max t = rbt_max_opt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
330 |
proof - |
51489 | 331 |
from assms have "hd (RBT_Impl.keys t) # tl (RBT_Impl.keys t) = RBT_Impl.keys t" by (cases t) simp_all |
332 |
with assms show ?thesis |
|
333 |
by (simp add: rbt_max_def rbt_fold1_keys_def rbt_max_opt_is_max |
|
51540
eea5c4ca4a0e
explicit sublocale dependency for Min/Max yields more appropriate Min/Max prefix for a couple of facts
haftmann
parents:
51489
diff
changeset
|
334 |
Max.set_eq_fold [symmetric] Max_eqI rbt_max_opt_in_set) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
335 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
336 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
337 |
|
67408 | 338 |
subsubsection \<open>abstract\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
339 |
|
56019 | 340 |
context includes rbt.lifting begin |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
341 |
lift_definition fold1_keys :: "('a \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> ('a::linorder, 'b) rbt \<Rightarrow> 'a" |
55565
f663fc1e653b
simplify proofs because of the stronger reflexivity prover
kuncar
parents:
54263
diff
changeset
|
342 |
is rbt_fold1_keys . |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
343 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
344 |
lemma fold1_keys_def_alt: |
56019 | 345 |
"fold1_keys f t = List.fold f (tl (RBT.keys t)) (hd (RBT.keys t))" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
346 |
by transfer (simp add: rbt_fold1_keys_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
347 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
348 |
lemma finite_fold1_fold1_keys: |
51489 | 349 |
assumes "semilattice f" |
56019 | 350 |
assumes "\<not> RBT.is_empty t" |
51489 | 351 |
shows "semilattice_set.F f (Set t) = fold1_keys f t" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
352 |
proof - |
60500 | 353 |
from \<open>semilattice f\<close> interpret semilattice_set f by (rule semilattice_set.intro) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
354 |
show ?thesis using assms |
51489 | 355 |
by (auto simp: fold1_keys_def_alt set_keys fold_def_alt non_empty_keys set_eq_fold [symmetric]) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
356 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
357 |
|
67408 | 358 |
|
359 |
paragraph \<open>minimum\<close> |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
360 |
|
55565
f663fc1e653b
simplify proofs because of the stronger reflexivity prover
kuncar
parents:
54263
diff
changeset
|
361 |
lift_definition r_min :: "('a :: linorder, unit) rbt \<Rightarrow> 'a" is rbt_min . |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
362 |
|
55565
f663fc1e653b
simplify proofs because of the stronger reflexivity prover
kuncar
parents:
54263
diff
changeset
|
363 |
lift_definition r_min_opt :: "('a :: linorder, unit) rbt \<Rightarrow> 'a" is rbt_min_opt . |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
364 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
365 |
lemma r_min_alt_def: "r_min t = fold1_keys min t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
366 |
by transfer (simp add: rbt_min_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
367 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
368 |
lemma r_min_eq_r_min_opt: |
56019 | 369 |
assumes "\<not> (RBT.is_empty t)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
370 |
shows "r_min t = r_min_opt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
371 |
using assms unfolding is_empty_empty by transfer (auto intro: rbt_min_eq_rbt_min_opt) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
372 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
373 |
lemma fold_keys_min_top_eq: |
63649 | 374 |
fixes t :: "('a::{linorder,bounded_lattice_top}, unit) rbt" |
56019 | 375 |
assumes "\<not> (RBT.is_empty t)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
376 |
shows "fold_keys min t top = fold1_keys min t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
377 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
378 |
have *: "\<And>t. RBT_Impl.keys t \<noteq> [] \<Longrightarrow> List.fold min (RBT_Impl.keys t) top = |
63649 | 379 |
List.fold min (hd (RBT_Impl.keys t) # tl (RBT_Impl.keys t)) top" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
380 |
by (simp add: hd_Cons_tl[symmetric]) |
63649 | 381 |
have **: "List.fold min (x # xs) top = List.fold min xs x" for x :: 'a and xs |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
382 |
by (simp add: inf_min[symmetric]) |
63649 | 383 |
show ?thesis |
384 |
using assms |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
385 |
unfolding fold_keys_def_alt fold1_keys_def_alt is_empty_empty |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
386 |
apply transfer |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
387 |
apply (case_tac t) |
63649 | 388 |
apply simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
389 |
apply (subst *) |
63649 | 390 |
apply simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
391 |
apply (subst **) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
392 |
apply simp |
63649 | 393 |
done |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
394 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
395 |
|
67408 | 396 |
|
397 |
paragraph \<open>maximum\<close> |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
398 |
|
55565
f663fc1e653b
simplify proofs because of the stronger reflexivity prover
kuncar
parents:
54263
diff
changeset
|
399 |
lift_definition r_max :: "('a :: linorder, unit) rbt \<Rightarrow> 'a" is rbt_max . |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
400 |
|
55565
f663fc1e653b
simplify proofs because of the stronger reflexivity prover
kuncar
parents:
54263
diff
changeset
|
401 |
lift_definition r_max_opt :: "('a :: linorder, unit) rbt \<Rightarrow> 'a" is rbt_max_opt . |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
402 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
403 |
lemma r_max_alt_def: "r_max t = fold1_keys max t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
404 |
by transfer (simp add: rbt_max_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
405 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
406 |
lemma r_max_eq_r_max_opt: |
56019 | 407 |
assumes "\<not> (RBT.is_empty t)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
408 |
shows "r_max t = r_max_opt t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
409 |
using assms unfolding is_empty_empty by transfer (auto intro: rbt_max_eq_rbt_max_opt) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
410 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
411 |
lemma fold_keys_max_bot_eq: |
63649 | 412 |
fixes t :: "('a::{linorder,bounded_lattice_bot}, unit) rbt" |
56019 | 413 |
assumes "\<not> (RBT.is_empty t)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
414 |
shows "fold_keys max t bot = fold1_keys max t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
415 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
416 |
have *: "\<And>t. RBT_Impl.keys t \<noteq> [] \<Longrightarrow> List.fold max (RBT_Impl.keys t) bot = |
63649 | 417 |
List.fold max (hd(RBT_Impl.keys t) # tl(RBT_Impl.keys t)) bot" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
418 |
by (simp add: hd_Cons_tl[symmetric]) |
63649 | 419 |
have **: "List.fold max (x # xs) bot = List.fold max xs x" for x :: 'a and xs |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
420 |
by (simp add: sup_max[symmetric]) |
63649 | 421 |
show ?thesis |
422 |
using assms |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
423 |
unfolding fold_keys_def_alt fold1_keys_def_alt is_empty_empty |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
424 |
apply transfer |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
425 |
apply (case_tac t) |
63649 | 426 |
apply simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
427 |
apply (subst *) |
63649 | 428 |
apply simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
429 |
apply (subst **) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
430 |
apply simp |
63649 | 431 |
done |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
432 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
433 |
|
56019 | 434 |
end |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
435 |
|
60500 | 436 |
section \<open>Code equations\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
437 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
438 |
code_datatype Set Coset |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
439 |
|
57816
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
blanchet
parents:
57514
diff
changeset
|
440 |
declare list.set[code] (* needed? *) |
50996
51ad7b4ac096
restore code equations for List.set in RBT_Set; make Scala happy according to 7.1 in the code generator manual
kuncar
parents:
49948
diff
changeset
|
441 |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
442 |
lemma empty_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
443 |
"Set.empty = Set RBT.empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
444 |
by (auto simp: Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
445 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
446 |
lemma UNIV_Coset [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
447 |
"UNIV = Coset RBT.empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
448 |
by (auto simp: Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
449 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
450 |
lemma is_empty_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
451 |
"Set.is_empty (Set t) = RBT.is_empty t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
452 |
unfolding Set.is_empty_def by (auto simp: fun_eq_iff Set_def intro: lookup_empty_empty[THEN iffD1]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
453 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
454 |
lemma compl_code [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
455 |
"- Set xs = Coset xs" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
456 |
"- Coset xs = Set xs" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
457 |
by (simp_all add: Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
458 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
459 |
lemma member_code [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
460 |
"x \<in> (Set t) = (RBT.lookup t x = Some ())" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
461 |
"x \<in> (Coset t) = (RBT.lookup t x = None)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
462 |
by (simp_all add: Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
463 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
464 |
lemma insert_code [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
465 |
"Set.insert x (Set t) = Set (RBT.insert x () t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
466 |
"Set.insert x (Coset t) = Coset (RBT.delete x t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
467 |
by (auto simp: Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
468 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
469 |
lemma remove_code [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
470 |
"Set.remove x (Set t) = Set (RBT.delete x t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
471 |
"Set.remove x (Coset t) = Coset (RBT.insert x () t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
472 |
by (auto simp: Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
473 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
474 |
lemma union_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
475 |
"Set t \<union> A = fold_keys Set.insert t A" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
476 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
477 |
interpret comp_fun_idem Set.insert |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
478 |
by (fact comp_fun_idem_insert) |
67682
00c436488398
tuned proofs -- prefer explicit names for facts from 'interpret';
wenzelm
parents:
67408
diff
changeset
|
479 |
from finite_fold_fold_keys[OF comp_fun_commute_axioms] |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
480 |
show ?thesis by (auto simp add: union_fold_insert) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
481 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
482 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
483 |
lemma inter_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
484 |
"A \<inter> Set t = rbt_filter (\<lambda>k. k \<in> A) t" |
49758
718f10c8bbfc
use Set.filter instead of Finite_Set.filter, which is removed then
kuncar
parents:
49757
diff
changeset
|
485 |
by (simp add: inter_Set_filter Set_filter_rbt_filter) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
486 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
487 |
lemma minus_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
488 |
"A - Set t = fold_keys Set.remove t A" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
489 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
490 |
interpret comp_fun_idem Set.remove |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
491 |
by (fact comp_fun_idem_remove) |
67682
00c436488398
tuned proofs -- prefer explicit names for facts from 'interpret';
wenzelm
parents:
67408
diff
changeset
|
492 |
from finite_fold_fold_keys[OF comp_fun_commute_axioms] |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
493 |
show ?thesis by (auto simp add: minus_fold_remove) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
494 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
495 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
496 |
lemma union_Coset [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
497 |
"Coset t \<union> A = - rbt_filter (\<lambda>k. k \<notin> A) t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
498 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
499 |
have *: "\<And>A B. (-A \<union> B) = -(-B \<inter> A)" by blast |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
500 |
show ?thesis by (simp del: boolean_algebra_class.compl_inf add: * inter_Set) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
501 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
502 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
503 |
lemma union_Set_Set [code]: |
56019 | 504 |
"Set t1 \<union> Set t2 = Set (RBT.union t1 t2)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
505 |
by (auto simp add: lookup_union map_add_Some_iff Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
506 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
507 |
lemma inter_Coset [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
508 |
"A \<inter> Coset t = fold_keys Set.remove t A" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
509 |
by (simp add: Diff_eq [symmetric] minus_Set) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
510 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
511 |
lemma inter_Coset_Coset [code]: |
56019 | 512 |
"Coset t1 \<inter> Coset t2 = Coset (RBT.union t1 t2)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
513 |
by (auto simp add: lookup_union map_add_Some_iff Set_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
514 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
515 |
lemma minus_Coset [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
516 |
"A - Coset t = rbt_filter (\<lambda>k. k \<in> A) t" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
517 |
by (simp add: inter_Set[simplified Int_commute]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
518 |
|
49757
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
48623
diff
changeset
|
519 |
lemma filter_Set [code]: |
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
48623
diff
changeset
|
520 |
"Set.filter P (Set t) = (rbt_filter P t)" |
49758
718f10c8bbfc
use Set.filter instead of Finite_Set.filter, which is removed then
kuncar
parents:
49757
diff
changeset
|
521 |
by (auto simp add: Set_filter_rbt_filter) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
522 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
523 |
lemma image_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
524 |
"image f (Set t) = fold_keys (\<lambda>k A. Set.insert (f k) A) t {}" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
525 |
proof - |
60679 | 526 |
have "comp_fun_commute (\<lambda>k. Set.insert (f k))" |
527 |
by standard auto |
|
528 |
then show ?thesis |
|
529 |
by (auto simp add: image_fold_insert intro!: finite_fold_fold_keys) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
530 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
531 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
532 |
lemma Ball_Set [code]: |
56019 | 533 |
"Ball (Set t) P \<longleftrightarrow> RBT.foldi (\<lambda>s. s = True) (\<lambda>k v s. s \<and> P k) t True" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
534 |
proof - |
60679 | 535 |
have "comp_fun_commute (\<lambda>k s. s \<and> P k)" |
536 |
by standard auto |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
537 |
then show ?thesis |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
538 |
by (simp add: foldi_fold_conj[symmetric] Ball_fold finite_fold_fold_keys) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
539 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
540 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
541 |
lemma Bex_Set [code]: |
56019 | 542 |
"Bex (Set t) P \<longleftrightarrow> RBT.foldi (\<lambda>s. s = False) (\<lambda>k v s. s \<or> P k) t False" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
543 |
proof - |
60679 | 544 |
have "comp_fun_commute (\<lambda>k s. s \<or> P k)" |
545 |
by standard auto |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
546 |
then show ?thesis |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
547 |
by (simp add: foldi_fold_disj[symmetric] Bex_fold finite_fold_fold_keys) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
548 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
549 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
550 |
lemma subset_code [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
551 |
"Set t \<le> B \<longleftrightarrow> (\<forall>x\<in>Set t. x \<in> B)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
552 |
"A \<le> Coset t \<longleftrightarrow> (\<forall>y\<in>Set t. y \<notin> A)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
553 |
by auto |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
554 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
555 |
lemma subset_Coset_empty_Set_empty [code]: |
56019 | 556 |
"Coset t1 \<le> Set t2 \<longleftrightarrow> (case (RBT.impl_of t1, RBT.impl_of t2) of |
67091 | 557 |
(rbt.Empty, rbt.Empty) \<Rightarrow> False | |
558 |
(_, _) \<Rightarrow> Code.abort (STR ''non_empty_trees'') (\<lambda>_. Coset t1 \<le> Set t2))" |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
559 |
proof - |
56019 | 560 |
have *: "\<And>t. RBT.impl_of t = rbt.Empty \<Longrightarrow> t = RBT rbt.Empty" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
561 |
by (subst(asm) RBT_inverse[symmetric]) (auto simp: impl_of_inject) |
56519
c1048f5bbb45
more appropriate name (Lifting.invariant -> eq_onp)
kuncar
parents:
56218
diff
changeset
|
562 |
have **: "eq_onp is_rbt rbt.Empty rbt.Empty" unfolding eq_onp_def by simp |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
563 |
show ?thesis |
53745 | 564 |
by (auto simp: Set_def lookup.abs_eq[OF **] dest!: * split: rbt.split) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
565 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
566 |
|
60500 | 567 |
text \<open>A frequent case -- avoid intermediate sets\<close> |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
568 |
lemma [code_unfold]: |
56019 | 569 |
"Set t1 \<subseteq> Set t2 \<longleftrightarrow> RBT.foldi (\<lambda>s. s = True) (\<lambda>k v s. s \<and> k \<in> Set t2) t1 True" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
570 |
by (simp add: subset_code Ball_Set) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
571 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
572 |
lemma card_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
573 |
"card (Set t) = fold_keys (\<lambda>_ n. n + 1) t 0" |
51489 | 574 |
by (auto simp add: card.eq_fold intro: finite_fold_fold_keys comp_fun_commute_const) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
575 |
|
64267 | 576 |
lemma sum_Set [code]: |
67091 | 577 |
"sum f (Set xs) = fold_keys (plus \<circ> f) xs 0" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
578 |
proof - |
67399 | 579 |
have "comp_fun_commute (\<lambda>x. (+) (f x))" |
60679 | 580 |
by standard (auto simp: ac_simps) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
581 |
then show ?thesis |
64267 | 582 |
by (auto simp add: sum.eq_fold finite_fold_fold_keys o_def) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
583 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
584 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
585 |
lemma the_elem_set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
586 |
fixes t :: "('a :: linorder, unit) rbt" |
56019 | 587 |
shows "the_elem (Set t) = (case RBT.impl_of t of |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
588 |
(Branch RBT_Impl.B RBT_Impl.Empty x () RBT_Impl.Empty) \<Rightarrow> x |
53745 | 589 |
| _ \<Rightarrow> Code.abort (STR ''not_a_singleton_tree'') (\<lambda>_. the_elem (Set t)))" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
590 |
proof - |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
591 |
{ |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
592 |
fix x :: "'a :: linorder" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
593 |
let ?t = "Branch RBT_Impl.B RBT_Impl.Empty x () RBT_Impl.Empty" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
594 |
have *:"?t \<in> {t. is_rbt t}" unfolding is_rbt_def by auto |
56519
c1048f5bbb45
more appropriate name (Lifting.invariant -> eq_onp)
kuncar
parents:
56218
diff
changeset
|
595 |
then have **:"eq_onp is_rbt ?t ?t" unfolding eq_onp_def by auto |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
596 |
|
56019 | 597 |
have "RBT.impl_of t = ?t \<Longrightarrow> the_elem (Set t) = x" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
598 |
by (subst(asm) RBT_inverse[symmetric, OF *]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
599 |
(auto simp: Set_def the_elem_def lookup.abs_eq[OF **] impl_of_inject) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
600 |
} |
53745 | 601 |
then show ?thesis |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
602 |
by(auto split: rbt.split unit.split color.split) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
603 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
604 |
|
60679 | 605 |
lemma Pow_Set [code]: "Pow (Set t) = fold_keys (\<lambda>x A. A \<union> Set.insert x ` A) t {{}}" |
606 |
by (simp add: Pow_fold finite_fold_fold_keys[OF comp_fun_commute_Pow_fold]) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
607 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
608 |
lemma product_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
609 |
"Product_Type.product (Set t1) (Set t2) = |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
610 |
fold_keys (\<lambda>x A. fold_keys (\<lambda>y. Set.insert (x, y)) t2 A) t1 {}" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
611 |
proof - |
60679 | 612 |
have *: "comp_fun_commute (\<lambda>y. Set.insert (x, y))" for x |
613 |
by standard auto |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
614 |
show ?thesis using finite_fold_fold_keys[OF comp_fun_commute_product_fold, of "Set t2" "{}" "t1"] |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
615 |
by (simp add: product_fold Product_Type.product_def finite_fold_fold_keys[OF *]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
616 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
617 |
|
60679 | 618 |
lemma Id_on_Set [code]: "Id_on (Set t) = fold_keys (\<lambda>x. Set.insert (x, x)) t {}" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
619 |
proof - |
60679 | 620 |
have "comp_fun_commute (\<lambda>x. Set.insert (x, x))" |
621 |
by standard auto |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
622 |
then show ?thesis |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
623 |
by (auto simp add: Id_on_fold intro!: finite_fold_fold_keys) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
624 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
625 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
626 |
lemma Image_Set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
627 |
"(Set t) `` S = fold_keys (\<lambda>(x,y) A. if x \<in> S then Set.insert y A else A) t {}" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
628 |
by (auto simp add: Image_fold finite_fold_fold_keys[OF comp_fun_commute_Image_fold]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
629 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
630 |
lemma trancl_set_ntrancl [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
631 |
"trancl (Set t) = ntrancl (card (Set t) - 1) (Set t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
632 |
by (simp add: finite_trancl_ntranl) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
633 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
634 |
lemma relcomp_Set[code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
635 |
"(Set t1) O (Set t2) = fold_keys |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
636 |
(\<lambda>(x,y) A. fold_keys (\<lambda>(w,z) A'. if y = w then Set.insert (x,z) A' else A') t2 A) t1 {}" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
637 |
proof - |
60679 | 638 |
interpret comp_fun_idem Set.insert |
639 |
by (fact comp_fun_idem_insert) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
640 |
have *: "\<And>x y. comp_fun_commute (\<lambda>(w, z) A'. if y = w then Set.insert (x, z) A' else A')" |
60679 | 641 |
by standard (auto simp add: fun_eq_iff) |
642 |
show ?thesis |
|
643 |
using finite_fold_fold_keys[OF comp_fun_commute_relcomp_fold, of "Set t2" "{}" t1] |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
644 |
by (simp add: relcomp_fold finite_fold_fold_keys[OF *]) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
645 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
646 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
647 |
lemma wf_set [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
648 |
"wf (Set t) = acyclic (Set t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
649 |
by (simp add: wf_iff_acyclic_if_finite) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
650 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
651 |
lemma Min_fin_set_fold [code]: |
53745 | 652 |
"Min (Set t) = |
56019 | 653 |
(if RBT.is_empty t |
53745 | 654 |
then Code.abort (STR ''not_non_empty_tree'') (\<lambda>_. Min (Set t)) |
655 |
else r_min_opt t)" |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
656 |
proof - |
51489 | 657 |
have *: "semilattice (min :: 'a \<Rightarrow> 'a \<Rightarrow> 'a)" .. |
658 |
with finite_fold1_fold1_keys [OF *, folded Min_def] |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
659 |
show ?thesis |
53745 | 660 |
by (simp add: r_min_alt_def r_min_eq_r_min_opt [symmetric]) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
661 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
662 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
663 |
lemma Inf_fin_set_fold [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
664 |
"Inf_fin (Set t) = Min (Set t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
665 |
by (simp add: inf_min Inf_fin_def Min_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
666 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
667 |
lemma Inf_Set_fold: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
668 |
fixes t :: "('a :: {linorder, complete_lattice}, unit) rbt" |
56019 | 669 |
shows "Inf (Set t) = (if RBT.is_empty t then top else r_min_opt t)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
670 |
proof - |
60679 | 671 |
have "comp_fun_commute (min :: 'a \<Rightarrow> 'a \<Rightarrow> 'a)" |
672 |
by standard (simp add: fun_eq_iff ac_simps) |
|
56019 | 673 |
then have "t \<noteq> RBT.empty \<Longrightarrow> Finite_Set.fold min top (Set t) = fold1_keys min t" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
674 |
by (simp add: finite_fold_fold_keys fold_keys_min_top_eq) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
675 |
then show ?thesis |
60679 | 676 |
by (auto simp add: Inf_fold_inf inf_min empty_Set[symmetric] |
677 |
r_min_eq_r_min_opt[symmetric] r_min_alt_def) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
678 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
679 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
680 |
lemma Max_fin_set_fold [code]: |
53745 | 681 |
"Max (Set t) = |
56019 | 682 |
(if RBT.is_empty t |
53745 | 683 |
then Code.abort (STR ''not_non_empty_tree'') (\<lambda>_. Max (Set t)) |
684 |
else r_max_opt t)" |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
685 |
proof - |
51489 | 686 |
have *: "semilattice (max :: 'a \<Rightarrow> 'a \<Rightarrow> 'a)" .. |
687 |
with finite_fold1_fold1_keys [OF *, folded Max_def] |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
688 |
show ?thesis |
53745 | 689 |
by (simp add: r_max_alt_def r_max_eq_r_max_opt [symmetric]) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
690 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
691 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
692 |
lemma Sup_fin_set_fold [code]: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
693 |
"Sup_fin (Set t) = Max (Set t)" |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
694 |
by (simp add: sup_max Sup_fin_def Max_def) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
695 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
696 |
lemma Sup_Set_fold: |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
697 |
fixes t :: "('a :: {linorder, complete_lattice}, unit) rbt" |
56019 | 698 |
shows "Sup (Set t) = (if RBT.is_empty t then bot else r_max_opt t)" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
699 |
proof - |
60679 | 700 |
have "comp_fun_commute (max :: 'a \<Rightarrow> 'a \<Rightarrow> 'a)" |
701 |
by standard (simp add: fun_eq_iff ac_simps) |
|
56019 | 702 |
then have "t \<noteq> RBT.empty \<Longrightarrow> Finite_Set.fold max bot (Set t) = fold1_keys max t" |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
703 |
by (simp add: finite_fold_fold_keys fold_keys_max_bot_eq) |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
704 |
then show ?thesis |
60679 | 705 |
by (auto simp add: Sup_fold_sup sup_max empty_Set[symmetric] |
706 |
r_max_eq_r_max_opt[symmetric] r_max_alt_def) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
707 |
qed |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
708 |
|
66404
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
709 |
context |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
710 |
begin |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
711 |
|
73968 | 712 |
declare [[code drop: Gcd_fin Lcm_fin \<open>Gcd :: _ \<Rightarrow> nat\<close> \<open>Gcd :: _ \<Rightarrow> int\<close> \<open>Lcm :: _ \<Rightarrow> nat\<close> \<open>Lcm :: _ \<Rightarrow> int\<close>]] |
713 |
||
714 |
lemma [code]: |
|
715 |
"Gcd\<^sub>f\<^sub>i\<^sub>n (Set t) = fold_keys gcd t (0::'a::{semiring_gcd, linorder})" |
|
716 |
proof - |
|
717 |
have "comp_fun_commute (gcd :: 'a \<Rightarrow> _)" |
|
718 |
by standard (simp add: fun_eq_iff ac_simps) |
|
719 |
with finite_fold_fold_keys [of _ 0 t] |
|
720 |
have "Finite_Set.fold gcd 0 (Set t) = fold_keys gcd t 0" |
|
721 |
by blast |
|
722 |
then show ?thesis |
|
723 |
by (simp add: Gcd_fin.eq_fold) |
|
724 |
qed |
|
725 |
||
726 |
lemma [code]: |
|
727 |
"Gcd (Set t) = (Gcd\<^sub>f\<^sub>i\<^sub>n (Set t) :: nat)" |
|
728 |
by simp |
|
729 |
||
730 |
lemma [code]: |
|
731 |
"Gcd (Set t) = (Gcd\<^sub>f\<^sub>i\<^sub>n (Set t) :: int)" |
|
732 |
by simp |
|
733 |
||
734 |
lemma [code]: |
|
735 |
"Lcm\<^sub>f\<^sub>i\<^sub>n (Set t) = fold_keys lcm t (1::'a::{semiring_gcd, linorder})" |
|
736 |
proof - |
|
737 |
have "comp_fun_commute (lcm :: 'a \<Rightarrow> _)" |
|
738 |
by standard (simp add: fun_eq_iff ac_simps) |
|
739 |
with finite_fold_fold_keys [of _ 1 t] |
|
740 |
have "Finite_Set.fold lcm 1 (Set t) = fold_keys lcm t 1" |
|
741 |
by blast |
|
742 |
then show ?thesis |
|
743 |
by (simp add: Lcm_fin.eq_fold) |
|
744 |
qed |
|
745 |
||
746 |
lemma [code drop: "Lcm :: _ \<Rightarrow> nat", code]: |
|
747 |
"Lcm (Set t) = (Lcm\<^sub>f\<^sub>i\<^sub>n (Set t) :: nat)" |
|
748 |
by simp |
|
749 |
||
750 |
lemma [code drop: "Lcm :: _ \<Rightarrow> int", code]: |
|
751 |
"Lcm (Set t) = (Lcm\<^sub>f\<^sub>i\<^sub>n (Set t) :: int)" |
|
752 |
by simp |
|
753 |
||
66404
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
754 |
qualified definition Inf' :: "'a :: {linorder, complete_lattice} set \<Rightarrow> 'a" |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
755 |
where [code_abbrev]: "Inf' = Inf" |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
756 |
|
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
757 |
lemma Inf'_Set_fold [code]: |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
758 |
"Inf' (Set t) = (if RBT.is_empty t then top else r_min_opt t)" |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
759 |
by (simp add: Inf'_def Inf_Set_fold) |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
760 |
|
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
761 |
qualified definition Sup' :: "'a :: {linorder, complete_lattice} set \<Rightarrow> 'a" |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
762 |
where [code_abbrev]: "Sup' = Sup" |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
763 |
|
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
764 |
lemma Sup'_Set_fold [code]: |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
765 |
"Sup' (Set t) = (if RBT.is_empty t then bot else r_max_opt t)" |
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
766 |
by (simp add: Sup'_def Sup_Set_fold) |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
767 |
|
66404
7eb451adbda6
code generation for Gcd and Lcm when sets are implemented by red-black trees
haftmann
parents:
66148
diff
changeset
|
768 |
end |
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
769 |
|
60679 | 770 |
lemma sorted_list_set[code]: "sorted_list_of_set (Set t) = RBT.keys t" |
771 |
by (auto simp add: set_keys intro: sorted_distinct_set_unique) |
|
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
772 |
|
53955 | 773 |
lemma Bleast_code [code]: |
60679 | 774 |
"Bleast (Set t) P = |
63194 | 775 |
(case List.filter P (RBT.keys t) of |
60679 | 776 |
x # xs \<Rightarrow> x |
777 |
| [] \<Rightarrow> abort_Bleast (Set t) P)" |
|
63194 | 778 |
proof (cases "List.filter P (RBT.keys t)") |
60679 | 779 |
case Nil |
780 |
thus ?thesis by (simp add: Bleast_def abort_Bleast_def) |
|
53955 | 781 |
next |
782 |
case (Cons x ys) |
|
783 |
have "(LEAST x. x \<in> Set t \<and> P x) = x" |
|
784 |
proof (rule Least_equality) |
|
60679 | 785 |
show "x \<in> Set t \<and> P x" |
786 |
using Cons[symmetric] |
|
787 |
by (auto simp add: set_keys Cons_eq_filter_iff) |
|
53955 | 788 |
next |
60679 | 789 |
fix y |
790 |
assume "y \<in> Set t \<and> P y" |
|
791 |
then show "x \<le> y" |
|
792 |
using Cons[symmetric] |
|
53955 | 793 |
by(auto simp add: set_keys Cons_eq_filter_iff) |
73707 | 794 |
(metis sorted_wrt.simps(2) sorted_append sorted_keys) |
53955 | 795 |
qed |
796 |
thus ?thesis using Cons by (simp add: Bleast_def) |
|
797 |
qed |
|
798 |
||
48623
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
799 |
hide_const (open) RBT_Set.Set RBT_Set.Coset |
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
800 |
|
bea613f2543d
implementation of sets by RBT trees for the code generator
kuncar
parents:
diff
changeset
|
801 |
end |