-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflat.v
340 lines (305 loc) · 9.96 KB
/
flat.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
(* Copyright (c) 2014, Robert Dockins *)
Require Import Setoid.
Require Import List.
Require Import NArith.
Require Import basics.
Require Import preord.
Require Import categories.
Require Import sets.
Require Import finsets.
Require Import esets.
Require Import effective.
Require Import directed.
Require Import plotkin.
Require Import joinable.
Require Import approx_rels.
Require Import cpo.
Require Import profinite.
(** * Flat pointed domains
Every enumerable type can be turned into a flat profinite domain.
These are useful for representing base types.
*)
Module enumtype.
Record enumtype :=
Enumtype
{ carrier :> Type
; enumtype_set : N -> option carrier
; enumtype_complete : forall x, exists n, enumtype_set n = Some x
; enumtype_dec : forall x y:carrier, {x=y}+{x<>y}
}.
Definition eq_mixin (X:enumtype) : Eq.mixin_of (carrier X) :=
Eq.Mixin (carrier X) (@eq _)
(@Logic.refl_equal _) (@Logic.eq_sym _) (@Logic.eq_trans _).
Definition preord_mixin (X:enumtype) : Preord.mixin_of (carrier X) :=
Preord.Mixin (carrier X) (@eq _) (@Logic.refl_equal _) (@Logic.eq_trans _).
Canonical Structure setoid (X:enumtype) : Eq.type :=
Eq.Pack X (eq_mixin X).
Canonical Structure ord (X:enumtype) : preord :=
Preord.Pack X (preord_mixin X).
Lemma order_discrete (X:enumtype) (x y:X) : x ≤ y -> x = y.
Proof (fun H => H).
Lemma strong_eq (X:enumtype) (x y:X) : x ≈ y -> x = y.
Proof (fun H => H).
Program Definition enumtype_effective X : effective_order (ord X) :=
EffectiveOrder (ord X) (enumtype_dec X) (enumtype_set X) _.
Next Obligation.
intros.
destruct (enumtype_complete X x) as [n ?]. exists n.
rewrite H. auto.
Qed.
Lemma enumtype_has_normals (X:enumtype) :
has_normals (ord X) (enumtype_effective X) true.
Proof.
repeat intro. exists X0.
split; [ hnf; auto |].
split; auto.
repeat intro. exists z.
split.
- red; simpl; intros.
apply H in H0.
apply finsubset_elem in H0.
+ destruct H0; auto.
+ intros. hnf in H2. destruct H2. eauto.
- apply finsubset_elem.
+ intros. hnf in H1. subst x. destruct H0; auto.
+ hnf in Hinh0.
destruct Hinh0.
apply H in H0.
apply finsubset_elem in H0.
* destruct H0. hnf in H1. subst x.
split; auto.
* intros. hnf in H3. subst z. destruct H2; auto.
Qed.
Definition enumtype_plotkin (X:enumtype) : plotkin_order true (ord X) :=
norm_plt (ord X) (enumtype_effective X) true (@enumtype_has_normals X).
End enumtype.
Notation enumtype := enumtype.enumtype.
Notation Enumtype := enumtype.Enumtype.
Canonical Structure enumtype.setoid.
Canonical Structure enumtype.ord.
Coercion enumtype.carrier : enumtype >-> Sortclass.
Canonical Structure flat (X:enumtype) : ∂PLT :=
PLT.Ob true (enumtype.carrier X)
(PLT.Class _ _
(enumtype.preord_mixin X)
(enumtype.enumtype_effective X)
(enumtype.enumtype_plotkin X)).
Program Definition flat_elem (Y:enumtype) (y:Y) : PLT.unit true → flat Y :=
PLT.Hom true (PLT.unit true) (flat Y) (single (tt,y)) _ _.
Next Obligation.
intros. destruct x'. destruct x.
apply single_axiom in H1.
apply single_axiom.
destruct H1. destruct H1. simpl in *.
split; split; simpl; auto.
- rewrite H0; auto.
- hnf in H0. subst y'. hnf in H3. hnf. auto.
Qed.
Next Obligation.
repeat intro. exists y.
split.
- repeat intro.
apply H in H0. apply erel_image_elem in H0.
apply single_axiom in H0.
destruct H0 as [[??][??]]; auto.
- apply erel_image_elem.
apply single_axiom. destruct x. auto.
Qed.
Lemma flat_elem_inj Y : forall y1 y2,
flat_elem Y y1 ≈ flat_elem Y y2 -> y1 = y2.
Proof.
intros. destruct H.
assert ((tt,y1) ∈ PLT.hom_rel (flat_elem Y y2)).
{ apply H. apply single_axiom. auto. }
simpl in H1. apply single_axiom in H1.
destruct H1 as [[??][??]]; auto.
Qed.
Arguments flat_elem [Y] y.
Section flat_cases.
Variable X:enumtype.
Variables (A B:∂PLT).
Variable f : X -> (A → B).
Program Definition insert_index (x:X) : Preord.hom (prod_preord A B) (prod_preord (prod_preord A (flat X)) B) :=
Preord.Hom _ _ (fun ab => ((fst ab, x), snd ab)) _.
Next Obligation.
intros x [??] [??] [??]; simpl in *; auto.
split; simpl; auto. split; auto.
Qed.
Program Definition map_indexes : Preord.hom (flat X) (eset ((PLT.ord A×flat X)×PLT.ord B)%cat_ob) :=
Preord.Hom _ _
(fun x => image (insert_index x) (PLT.hom_rel (f x))) _.
Next Obligation.
intros. hnf in H. subst a. auto.
Qed.
Definition flat_cases_rel : erel (PLT.ord A×flat X)%cat_ob (PLT.ord B) :=
union (image map_indexes (enumtype.enumtype_set X : eset (flat X))).
Lemma flat_cases_rel_elem : forall x a b,
((a,b) ∈ PLT.hom_rel (f x) <-> (a,x,b) ∈ flat_cases_rel).
Proof.
intros. unfold flat_cases_rel.
rewrite union_axiom.
intuition.
- exists (map_indexes x).
split.
+ apply image_axiom1.
destruct (enumtype.enumtype_complete X x) as [n ?].
exists n. rewrite H0. auto.
+ unfold map_indexes. simpl.
apply image_axiom1'.
exists (a,b). split; auto.
- destruct H as [Q [??]].
apply image_axiom2 in H. destruct H as [y [??]].
rewrite H1 in H0.
simpl in H0.
apply image_axiom2 in H0.
destruct H0 as [?[??]].
simpl in H2.
destruct H2 as [??].
destruct H2 as [??]. simpl in *.
destruct H2. simpl in *.
hnf in H5. subst y.
destruct x0. revert H0.
apply PLT.hom_order.
+ destruct H3 as [[??]?]; auto.
+ destruct H3 as [[??]?]; auto.
Qed.
Program Definition flat_cases : A ⊗ flat X → B :=
PLT.Hom true (PLT.prod A (flat X)) B flat_cases_rel _ _.
Next Obligation.
intros.
destruct x. destruct x'.
rewrite <- (flat_cases_rel_elem) in H1.
rewrite <- flat_cases_rel_elem.
destruct H. simpl in *. hnf in H2. subst c2.
revert H1. apply PLT.hom_order; auto.
Qed.
Next Obligation.
repeat intro.
destruct x as [a x].
destruct (PLT.hom_directed _ _ _ (f x) a M); auto.
- red; simpl; intros. apply H in H0.
apply erel_image_elem in H0.
apply erel_image_elem.
apply (flat_cases_rel_elem x a a0). auto.
- destruct H0.
apply erel_image_elem in H1.
exists x0. split; auto.
apply erel_image_elem.
apply (flat_cases_rel_elem x a x0). auto.
Qed.
Lemma flat_cases_elem C x h :
flat_cases ∘ 《h, flat_elem x ∘ PLT.terminate true C》 ≈ f x ∘ h.
Proof.
split; intros a H.
- destruct a.
apply PLT.compose_hom_rel in H.
apply PLT.compose_hom_rel.
destruct H as [q [??]].
destruct q.
apply (flat_cases_rel_elem) in H0.
rewrite (PLT.pair_hom_rel _ _ _ _ _ _ c c1 c2) in H. destruct H.
exists c1. split; auto.
apply PLT.compose_hom_rel in H1.
destruct H1 as [?[??]]. destruct x0.
simpl in H2.
apply single_axiom in H2.
destruct H2 as [[??][??]]. simpl in *.
hnf in H3. subst c2. auto.
- destruct a.
apply PLT.compose_hom_rel in H.
apply PLT.compose_hom_rel.
destruct H as [q [??]].
exists (q,x). split.
+ apply pair_rel_elem. split; auto.
* apply PLT.compose_hom_rel.
exists tt. split; auto.
** simpl. apply eprod_elem.
split.
*** apply eff_complete.
*** apply single_axiom; auto.
** simpl. apply single_axiom. auto.
+ apply (flat_cases_rel_elem). auto.
Qed.
End flat_cases.
Arguments flat_cases [X A B] f.
Lemma flat_cases_univ (X:enumtype) (A B:∂PLT) (f:X -> A → B) q :
(forall x, f x ≈ q ∘ 《 id, flat_elem x ∘ PLT.terminate _ _》) ->
flat_cases f ≈ q.
Proof.
intros. split; repeat intro.
- destruct a as [[a x] b].
destruct (H x).
simpl in H0.
apply (flat_cases_rel_elem _ _ _ f x a b) in H0.
apply H1 in H0.
apply PLT.compose_hom_rel in H0.
destruct H0 as [[a' x'] [??]].
apply (PLT.pair_hom_rel _ _ _ _ _ _ a a' x') in H0.
destruct H0. simpl in H0. apply ident_elem in H0.
apply PLT.compose_hom_rel in H4.
destruct H4 as [?[??]]. simpl in H5.
apply single_axiom in H5.
revert H3. apply PLT.hom_order.
+ split; simpl; auto.
destruct H5 as [[??][??]]; auto.
+ auto.
- destruct a as [[a x] b].
destruct (H x).
simpl. apply flat_cases_rel_elem.
apply H2.
apply PLT.compose_hom_rel.
exists (a,x). split; auto.
apply PLT.pair_hom_rel.
split; simpl.
+ apply ident_elem; auto.
+ apply PLT.compose_hom_rel.
exists tt. split; auto.
* simpl. apply eprod_elem.
split.
** apply eff_complete.
** apply single_axiom. auto.
* simpl. apply single_axiom; auto.
Qed.
Lemma flat_cases_commute : forall (X : enumtype) (A B C : ∂PLT)
(f : X -> A → B) (g:C → A) (h:C → flat X),
flat_cases f ∘ 《 g, h 》 ≈ flat_cases (fun x => f x ∘ g) ∘ 《 id, h 》.
Proof.
intros.
transitivity (flat_cases f ∘ PLT.pair_map g id ∘ 《id,h》).
- rewrite <- (cat_assoc ∂PLT).
rewrite <- (PLT.pair_map_pair true).
rewrite (cat_ident1 ∂PLT).
rewrite (cat_ident2 ∂PLT).
auto.
- apply cat_respects; auto.
symmetry. apply flat_cases_univ.
intros.
rewrite <- (cat_assoc ∂PLT).
rewrite <- (PLT.pair_map_pair true).
rewrite (cat_ident1 ∂PLT).
rewrite (cat_ident2 ∂PLT).
rewrite flat_cases_elem. auto.
Qed.
Lemma flat_cases_eq (X:enumtype) (A B:∂PLT) (f g : X -> A → B) :
(forall x, f x ≈ g x) ->
flat_cases f ≈ flat_cases g.
Proof.
intros.
apply flat_cases_univ; intros.
rewrite flat_cases_elem.
rewrite (cat_ident1 ∂PLT).
apply H.
Qed.
Definition boolset : N -> option bool :=
fun n => match n with N0 => Some true | _ => Some false end.
Program Definition enumbool : enumtype :=
Enumtype bool boolset _ _.
Next Obligation.
intros. destruct x.
exists N0. simpl. auto.
exists 1%N. simpl; auto.
Qed.
Next Obligation.
decide equality.
Qed.
Canonical Structure enumbool.