-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexp_functor.v
972 lines (913 loc) · 30.4 KB
/
exp_functor.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
(* Copyright (c) 2014, Robert Dockins *)
Require Import List.
Require Import basics.
Require Import categories.
Require Import preord.
Require Import sets.
Require Import finsets.
Require Import esets.
Require Import effective.
Require Import plotkin.
Require Import profinite.
Require Import embed.
Require Import joinable.
Require Import directed.
Require Import cont_functors.
Require Import bilimit.
(** * Embedding functor for exponentials.
Here we define the function space functor in the category of embeddings
and prove that is is continuous.
*)
Section map_rel.
Context {A B C D : preord}.
Variable f:A -> B.
Variable g:C -> D.
Fixpoint map_rel (G:finset (A×C)%cat_ob) : finset (B×D)%cat_ob :=
match G with
| nil => nil
| (a,c)::G' => (f a, g c)::map_rel G'
end.
Lemma map_rel_inh : forall hf G,
inh hf G -> inh hf (map_rel G).
Proof.
intros.
destruct hf; hnf; auto.
destruct H.
destruct H as [q [??]].
clear x H0.
induction G.
- elim H.
- hnf in H. destruct H.
+ subst a.
destruct q.
exists (f c, g c0).
exists (f c, g c0).
split; simpl; auto.
+ destruct IHG as [x ?]; auto.
exists x.
simpl. destruct a.
apply cons_elem; auto.
Qed.
Lemma unmap_rel : forall b d G,
(b,d) ∈ map_rel G ->
exists a c, (a,c) ∈ G /\ f a ≈ b /\ g c ≈ d.
Proof.
induction G; simpl; intros.
- apply nil_elem in H. elim H.
- destruct a. simpl in H.
apply cons_elem in H. destruct H.
+ exists c. exists c0.
split; auto.
* apply cons_elem; auto.
* destruct H as [[??][??]]; split; split; auto.
+ destruct IHG as [p [q [??]]]; auto.
exists p. exists q. split; auto.
apply cons_elem; auto.
Qed.
Lemma unmap_rel_sub : forall G X,
G ⊆ map_rel X ->
exists G', G' ⊆ X /\ G ≈ map_rel G'.
Proof.
induction G; simpl; intros.
- exists nil. simpl; split; auto.
red; intros. apply nil_elem in H0. elim H0.
- destruct (IHG X) as [G' [??]].
+ hnf; intros. apply H. apply cons_elem; auto.
+ assert (a ∈ map_rel X).
{ apply H. apply cons_elem. auto. }
destruct a.
apply unmap_rel in H2.
destruct H2 as [p [q [?[??]]]].
exists ((p,q)::G').
split.
* hnf; intros.
apply cons_elem in H5. destruct H5.
** rewrite H5. auto.
** apply H0; auto.
* split; hnf; simpl; intros.
** apply cons_elem in H5.
destruct H5.
*** rewrite H5.
apply cons_elem.
left.
destruct H3; destruct H4; split; split; auto.
*** apply cons_elem. right; auto.
rewrite <- H1; auto.
** apply cons_elem in H5.
destruct H5.
*** rewrite H5.
apply cons_elem.
left.
destruct H3; destruct H4; split; split; auto.
*** apply cons_elem. right; auto.
rewrite H1; auto.
Qed.
End map_rel.
Section exp_functor.
Variable hf:bool.
Variables A B C D:ob (EMBED hf).
Variable f:A ⇀ B.
Variable g:C ⇀ D.
Lemma map_rel_in : forall G a b,
(a,b) ∈ G -> (f a, g b) ∈ map_rel f g G.
Proof.
induction G; simpl; intros.
- apply nil_elem in H. elim H.
- apply cons_elem in H.
destruct H.
+ destruct a.
simpl. apply cons_elem.
left.
destruct H as [[??][??]].
split; split; simpl in *; auto.
* apply embed_mono; auto.
* apply embed_mono; auto.
* apply embed_mono; auto.
* apply embed_mono; auto.
+ destruct a. simpl.
apply cons_elem. right.
apply IHG. auto.
Qed.
Lemma is_joinable_unmap_rel X :
is_joinable_relation hf (map_rel f g X) ->
is_joinable_relation hf X.
Proof.
intros. destruct H; split.
{ destruct hf; hnf; simpl; auto.
destruct H as [x ?].
destruct x.
apply unmap_rel in H.
destruct H as [p [q [?[??]]]].
exists (p,q). auto.
}
intros.
destruct (mub_complete (PLT.plotkin B)
(image (π₁)%cat_ops (map_rel f g G)) (f x)) as [z [??]].
- apply inh_image.
apply map_rel_inh; auto.
- hnf; intros.
apply image_axiom2 in H3.
destruct H3 as [[p q] [??]]. simpl in *.
rewrite H4.
destruct H2.
apply unmap_rel in H3.
destruct H3 as [p' [q' [?[??]]]].
rewrite <- H6.
apply embed_mono. apply H2.
apply image_axiom1'.
exists (p',q'). split; auto.
- destruct (H0 (map_rel f g G)) with z
as [q [??]]; auto.
+ apply map_rel_inh; auto.
+ hnf; intros.
destruct a.
apply unmap_rel in H5.
destruct H5 as [p [q [?[??]]]].
apply member_eq with (f p, g q).
* destruct H6; destruct H7; split; split; simpl; auto.
* apply map_rel_in. apply H1. auto.
+ apply unmap_rel in H5.
destruct H5 as [z' [q' [?[??]]]].
assert (z' ≈ x).
{ split.
- apply (embed_reflects f).
rewrite H7; auto.
- destruct H2.
apply H9.
+ hnf; intros.
apply image_axiom2 in H10.
destruct H10 as [[r s] [??]].
rewrite H11; simpl.
apply (embed_reflects f).
rewrite H7.
destruct H3.
apply H3.
apply image_axiom1'.
exists (f r, g s).
split; auto.
apply map_rel_in. auto.
+ apply (embed_reflects f).
rewrite H7; auto.
}
exists q'. split.
* apply member_eq with (z',q'); auto.
destruct H9; split; split; auto.
* hnf; intros.
apply image_axiom2 in H10.
destruct H10 as [[r s] [??]]. rewrite H11. simpl.
apply (embed_reflects g).
rewrite H8. apply H6.
apply image_axiom1'.
exists (f r, g s). split; auto.
apply map_rel_in. auto.
Qed.
Lemma is_joinable_map_rel X :
is_joinable_relation hf X ->
is_joinable_relation hf (map_rel f g X).
Proof.
intros. destruct H. split.
- apply map_rel_inh; auto.
- intros.
apply unmap_rel_sub in H1.
destruct H1 as [G' [??]].
assert (exists q, upper_bound q (image (π₁)%cat_ops G') /\ f q ≤ x).
{ destruct H2. clear H4.
assert (upper_bound x (image (π₁)%cat_ops (map_rel f g G'))).
{ hnf; intros.
apply H2.
apply image_axiom2 in H4.
destruct H4 as [?[??]].
rewrite <- H3 in H4.
rewrite H5.
apply image_axiom1. auto.
}
assert (inh hf G').
{ destruct hf; hnf; auto.
destruct HGinh as [[a c] ?].
rewrite H3 in H5.
apply unmap_rel in H5.
destruct H5 as [p [q [?[??]]]].
eauto.
}
clear H2 G HGinh H0 H H3 X H1.
induction G'.
+ destruct hf.
* hnf in H5.
destruct H5 as [[a c] ?].
apply nil_elem in H. elim H.
* destruct (embed_directed0 f x) as [q ?].
exists q. split; auto.
hnf; simpl; intros.
apply nil_elem in H0. elim H0.
+ destruct a as [a c].
assert (f a ≤ x).
{ apply H4. simpl. apply cons_elem; auto. }
case_eq G'; intros.
* exists a. split; auto.
hnf; simpl; intros.
unfold image in H1. simpl in H1.
apply cons_elem in H1.
destruct H1; auto.
apply nil_elem in H1. elim H1.
* rewrite <- H0.
destruct IHG' as [q [??]].
** hnf; intros. apply H4.
simpl. apply cons_elem; auto.
** rewrite H0.
eapply elem_inh.
apply cons_elem; eauto.
** destruct (embed_directed2 f x q a) as [z [?[??]]]; auto.
exists z. split; auto.
hnf; simpl; intros.
unfold image in H8; simpl in H8.
apply cons_elem in H8.
destruct H8. rewrite H8; auto.
transitivity q; auto.
}
destruct H4 as [q [??]].
destruct (mub_complete (PLT.plotkin A) (image (π₁)%cat_ops G') q) as [q' [??]].
+ destruct hf; hnf; auto.
destruct HGinh.
destruct x0.
rewrite H3 in H6.
apply unmap_rel in H6.
destruct H6 as [n [m [?[??]]]].
exists n.
apply image_axiom1'. exists (n,m); auto.
+ auto.
+ assert (x ≈ f q').
{ split.
- destruct H2. apply H8.
+ destruct H6.
hnf; intros.
apply image_axiom2 in H10.
destruct H10 as [z [??]].
rewrite H3 in H10.
rewrite H11.
simpl.
destruct z as [za zb]. simpl.
apply unmap_rel in H10.
destruct H10 as [za' [zb' [?[??]]]].
rewrite <- H12.
apply embed_mono.
apply H6.
apply image_axiom1'.
exists (za',zb'). auto.
+ transitivity (f q); auto.
apply embed_mono; auto.
- transitivity (f q); auto.
apply embed_mono; auto.
}
destruct (H0 G') with q'; auto.
{ destruct hf; hnf; auto.
destruct HGinh.
destruct x0.
rewrite H3 in H9.
apply unmap_rel in H9.
destruct H9 as [n [m [?[??]]]].
exists (n,m). auto.
}
destruct H9.
exists (g x0).
split; auto.
* apply member_eq with (f q', g x0).
destruct H8; split; split; simpl; auto.
apply map_rel_in. auto.
* hnf; intros.
apply image_axiom2 in H11. destruct H11 as [y [??]].
rewrite H12.
destruct y as [y1 y2]. simpl.
simpl in H12.
rewrite H3 in H11.
apply unmap_rel in H11.
destruct H11 as [y1' [y2' [?[??]]]].
rewrite <- H14.
apply embed_mono.
apply H10.
apply image_axiom1'.
exists (y1',y2'). split; simpl; auto.
Qed.
Definition exp_fmap_func (X:joinable_relation hf A C) : joinable_relation hf B D :=
match X with
| exist _ G H => exist (is_joinable_relation hf)
(map_rel f g G)
(is_joinable_map_rel G H)
end.
Program Definition unimage_jrel (y:finset (prod_preord B D)%preord) :=
esubset
(fun ac:(prod_preord A C) =>
exists b d, (b,d) ∈ y /\ b ≤ f (fst ac) /\ g (snd ac) ≤ d)
_
(eprod (eff_enum A (PLT.effective A)) (eff_enum C (PLT.effective C))).
Next Obligation.
intros.
apply (semidec_ex _ _
(fun a b => exists d, (b,d) ∈ y /\ b ≤ f (fst a) /\ g (snd a) ≤ d)).
- intros. destruct H0 as [d [?[??]]]. exists d; split; auto.
+ apply member_eq with (b,d); auto.
destruct H; split; split; auto.
+ split; auto.
rewrite <- H; auto.
- apply (@PLT.effective _ B).
- intros.
destruct ab. simpl.
apply (semidec_ex _ _
(fun (_:unit) d => (c0, d) ∈ y /\ c0 ≤ f (fst c) /\ g (snd c) ≤ d)).
+ intros. intuition.
* apply member_eq with (c0,b); auto.
destruct H; split; split; auto.
* rewrite <- H; auto.
+ apply PLT.effective.
+ intros [??].
apply semidec_conj.
* apply dec_semidec. apply finset_dec.
apply (OrdDec _ (eff_ord_dec _ (effective_prod (PLT.effective B) (PLT.effective D)))).
* apply semidec_conj.
** apply dec_semidec; simpl; intros.
apply (eff_ord_dec _ (PLT.effective B)).
** apply dec_semidec; simpl; intros.
apply (eff_ord_dec _ (PLT.effective D)).
+ exact tt.
Qed.
Lemma unimage_jrel_order (y:joinable_relation hf B D) :
((forall (x x' : A) (y0 y' : C),
x ≤ x' ->
y' ≤ y0 ->
(x, y0) ∈ unimage_jrel (proj1_sig y) ->
(x', y') ∈ unimage_jrel (proj1_sig y))).
Proof.
intros.
apply esubset_elem in H1.
- destruct H1.
apply esubset_elem.
+ intros. destruct H4 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
* rewrite H5. apply embed_mono.
destruct H3 as [[??][??]]; auto.
* rewrite <- H6.
apply embed_mono.
destruct H3 as [[??][??]]; auto.
+ split; auto.
* apply eprod_elem; split; apply eff_complete.
* destruct H2 as [b [d [?[??]]]].
exists b. exists d. simpl; split; auto.
simpl in *.
split.
** transitivity (f x); auto.
apply embed_mono; auto.
** transitivity (g y0); auto.
apply embed_mono; auto.
- intros. destruct H4 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
+ rewrite H5. apply embed_mono.
destruct H3 as [[??][??]]; auto.
+ rewrite <- H6.
apply embed_mono.
destruct H3 as [[??][??]]; auto.
Qed.
Lemma unimage_jrel_directed (y:joinable_relation hf B D) :
(forall a : A,
directed hf
(erel_image A C {| orddec := eff_ord_dec A (PLT.effective A) |}
(unimage_jrel (proj1_sig y)) a)).
Proof.
intro a.
apply prove_directed.
- generalize (refl_equal hf).
pattern hf at 2. case hf; intros.
+ pattern hf at 1. rewrite H. auto.
+ pattern hf at 1. rewrite H.
destruct y as [y [Hy1 Hy2]]. simpl in *.
destruct (mub_complete (PLT.plotkin B) nil) with (f a) as [q [??]].
* simpl.
pattern hf at 4. rewrite H. hnf; auto.
* hnf; intros. apply nil_elem in H0. elim H0.
* destruct (Hy2 nil) with q.
** pattern hf at 3. rewrite H. hnf; auto.
** hnf; intros. apply nil_elem in H2. elim H2.
** simpl. auto.
** destruct H2.
generalize (embed_directed0 g x).
pattern hf at 1. rewrite H.
intros [x' ?].
exists x'.
apply erel_image_elem.
apply esubset_elem.
*** intros. destruct H6 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
**** rewrite H7. apply embed_mono.
destruct H5 as [[??][??]]; auto.
**** rewrite <- H8.
apply embed_mono.
destruct H5 as [[??][??]]; auto.
*** split.
**** apply eprod_elem; split; apply eff_complete.
**** exists q. exists x. split; simpl; auto.
- simpl; intros.
apply erel_image_elem in H.
apply erel_image_elem in H0.
apply esubset_elem in H.
+ apply esubset_elem in H0.
* destruct H as [_ ?].
destruct H0 as [_ ?].
destruct H as [p [q [?[??]]]].
destruct H0 as [p' [q' [?[??]]]].
simpl in *.
destruct y as [y [Hy1 Hy2]]. simpl in *.
destruct (mub_complete (PLT.plotkin B) (p::p'::nil)) with (f a) as [m [??]].
** apply elem_inh with p. apply cons_elem; auto.
** hnf; intros.
apply cons_elem in H5. destruct H5.
{ rewrite H5. auto. }
apply cons_elem in H5. destruct H5.
{ rewrite H5. auto. }
apply nil_elem in H5. elim H5.
** destruct (Hy2 ((p,q)::(p',q')::nil)) with m as [n [??]].
*** eapply elem_inh. apply cons_elem; eauto.
*** hnf; simpl; intros.
apply cons_elem in H7. destruct H7.
{ rewrite H7. auto. }
apply cons_elem in H7. destruct H7.
{ rewrite H7. auto. }
apply nil_elem in H7. elim H7.
*** simpl. auto.
*** simpl in H8.
destruct (embed_directed2 g n x y0) as [z [?[??]]].
**** transitivity q; auto.
apply H8. apply cons_elem; auto.
**** transitivity q'; auto.
apply H8.
apply cons_elem; right.
apply cons_elem; auto.
**** exists z. split; auto. split; auto.
apply erel_image_elem.
apply esubset_elem.
***** intros. destruct H13 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
****** rewrite H14. apply embed_mono.
destruct H12 as [[??][??]]; auto.
****** rewrite <- H15.
apply embed_mono.
destruct H12 as [[??][??]]; auto.
***** split.
****** apply eprod_elem; split; apply eff_complete.
****** exists m. exists n. split; simpl; auto.
* intros. destruct H3 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
** rewrite H4. apply embed_mono.
destruct H2 as [[??][??]]; auto.
** rewrite <- H5.
apply embed_mono.
destruct H2 as [[??][??]]; auto.
+ intros. destruct H3 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
* rewrite H4. apply embed_mono.
destruct H2 as [[??][??]]; auto.
* rewrite <- H5.
apply embed_mono.
destruct H2 as [[??][??]]; auto.
Qed.
Program Definition exp_fmap : PLT.exp A C ⇀ PLT.exp B D :=
Embedding hf (PLT.exp A C) (PLT.exp B D) exp_fmap_func _ _ _ _.
Next Obligation.
simpl; intros.
destruct a as [X HX].
destruct a' as [Y HY]. simpl in *.
hnf; simpl; intros.
hnf in H; simpl in H.
apply unmap_rel in H0.
destruct H0 as [p [q [?[??]]]].
destruct (H p q) as [m [n [?[??]]]]; auto.
exists (f m). exists (g n).
repeat split.
- apply map_rel_in. auto.
- rewrite <- H1.
apply embed_mono; auto.
- rewrite <- H2.
apply embed_mono; auto.
Qed.
Next Obligation.
simpl; intros.
destruct a as [X HX].
destruct a' as [Y HY]. simpl in *.
hnf; simpl; intros.
hnf in H; simpl in H.
destruct (H (f a) (g b)) as [m [n [?[??]]]]; auto.
- apply map_rel_in. auto.
- apply unmap_rel in H1.
destruct H1 as [p [q [?[??]]]].
exists p. exists q.
split; auto.
split.
+ apply (embed_reflects f).
rewrite <- H2; auto.
+ apply (embed_reflects g).
rewrite H3. auto.
Qed.
Next Obligation.
intro y.
generalize (swell hf A C
(PLT.effective A) (PLT.plotkin A)
(PLT.effective C) (PLT.plotkin C)
(unimage_jrel (proj1_sig y))
(unimage_jrel_order y)
(unimage_jrel_directed y)).
intros; simpl in *.
generalize (refl_equal hf).
pattern hf at 2. case hf; intros.
{ pattern hf at 1. rewrite H0. auto. }
pattern hf at 1. rewrite H0.
destruct (H nil).
- pattern hf at 3.
rewrite H0. hnf; auto.
- hnf; simpl; intros. apply nil_elem in H1. elim H1.
- destruct H1 as [?[??]].
exists (exist _ x H3).
simpl.
hnf; simpl; intros.
apply unmap_rel in H4.
destruct H4 as [a' [c' [?[??]]]].
apply H2 in H4.
unfold unimage_jrel in H4.
simpl in H4.
apply esubset_elem in H4.
+ destruct H4.
destruct H7 as [p [q [?[??]]]].
exists p. exists q.
split; auto.
split.
* rewrite <- H5. auto.
* rewrite <- H6. auto.
+ intros. destruct H9 as [?[?[?[??]]]].
exists x0. exists x1. intuition.
* rewrite H10. apply embed_mono.
destruct H8 as [[??][??]]; auto.
* rewrite <- H11.
apply embed_mono.
destruct H8 as [[??][??]]; auto.
Qed.
Next Obligation.
intros.
generalize (swell hf A C
(PLT.effective A) (PLT.plotkin A)
(PLT.effective C) (PLT.plotkin C)
(unimage_jrel (proj1_sig y))
(unimage_jrel_order y)
(unimage_jrel_directed y)).
simpl in *; intros.
destruct (H1 (proj1_sig a ++ proj1_sig b)) as [X [?[??]]].
- destruct a. destruct i.
simpl.
generalize i.
clear.
destruct hf; intros; hnf; auto.
destruct i as [q ?].
exists q. apply app_elem. auto.
- hnf; intros.
apply app_elem in H2. destruct H2.
+ apply esubset_elem.
* intros. destruct H4 as [?[?[?[??]]]].
exists x. exists x0. intuition.
** rewrite H5. apply embed_mono.
destruct H3 as [[??][??]]; auto.
** rewrite <- H6.
apply embed_mono.
destruct H3 as [[??][??]]; auto.
* destruct a0 as [p q].
split; [ apply eprod_elem; split; apply eff_complete |].
destruct (H (f p) (g q)) as [m [n [?[??]]]].
** destruct a; simpl in *.
apply map_rel_in. auto.
** exists m. exists n. split; auto.
+ destruct a0 as [p q].
destruct (H0 (f p) (g q)) as [m [n [?[??]]]].
* destruct b; simpl in *.
apply map_rel_in. auto.
* apply esubset_elem.
** intros. destruct H7 as [?[?[?[??]]]].
exists x. exists x0. intuition.
rewrite H8. apply embed_mono.
destruct H6 as [[??][??]]; auto.
rewrite <- H9.
apply embed_mono.
destruct H6 as [[??][??]]; auto.
** split; [ apply eprod_elem; split; apply eff_complete |].
exists m. exists n. split; auto.
- exists (exist _ X H4).
split.
+ hnf; simpl; intros.
apply unmap_rel in H5.
destruct H5 as [a' [c' [?[??]]]].
apply H3 in H5.
apply esubset_elem in H5.
* destruct H5.
destruct H8 as [m [n [?[??]]]].
exists m. exists n. split; auto.
simpl in *.
split.
** rewrite H9; auto.
** rewrite <- H10; auto.
* intros. destruct H10 as [?[?[?[??]]]].
exists x. exists x0. intuition.
** rewrite H11. apply embed_mono.
destruct H9 as [[??][??]]; auto.
** rewrite <- H12.
apply embed_mono.
destruct H9 as [[??][??]]; auto.
+ split; hnf; simpl; intros.
* assert ((a0,b0) ∈ X) .
{ apply H2. apply app_elem. auto. }
exists a0. exists b0.
split; auto.
* assert ((a0,b0) ∈ X) .
{ apply H2. apply app_elem. auto. }
exists a0. exists b0.
split; auto.
Qed.
End exp_functor.
Lemma exp_fmap_ident hf (A B:ob (EMBED hf)) (f:A⇀A) (g:B⇀B) :
f ≈ id -> g ≈ id ->
exp_fmap hf A A B B f g ≈ id.
Proof.
intros.
apply embed_lift'. intro.
simpl.
unfold exp_fmap_func. destruct x; simpl.
split; hnf; simpl; intros.
- apply unmap_rel in H1.
destruct H1 as [p [q [?[??]]]].
exists p. exists q. split; auto.
split.
+ rewrite <- H2.
rewrite H. simpl. auto.
+ rewrite <- H3. rewrite H0. simpl; auto.
- exists (f a). exists (g b).
split; auto.
+ apply map_rel_in; auto.
+ split.
* rewrite H. simpl; auto.
* rewrite H0. simpl; auto.
Qed.
Lemma exp_fmap_compose hf (A B C D E F:ob (EMBED hf))
(f1:B → E) (f2:D → F)
(g1:A → B) (g2:C → D)
(h1:A → E) (h2:C → F) :
f1 ∘ g1 ≈ h1 ->
f2 ∘ g2 ≈ h2 ->
exp_fmap hf B E D F f1 f2 ∘ exp_fmap hf A B C D g1 g2 ≈
exp_fmap hf A E C F h1 h2.
Proof.
intros.
apply embed_lift'. intro.
simpl.
unfold exp_fmap_func. destruct x; simpl.
split; hnf; simpl; intros.
- apply unmap_rel in H1.
destruct H1 as [p [q [?[??]]]].
apply unmap_rel in H1.
destruct H1 as [p' [q' [?[??]]]].
exists (h1 p'). exists (h2 q').
split.
+ apply map_rel_in. auto.
+ rewrite <- H. rewrite <- H0.
split; simpl; auto.
* rewrite <- H2. apply embed_map_morphism; auto.
* rewrite <- H3. apply embed_map_morphism; auto.
- apply unmap_rel in H1.
destruct H1 as [p [q [?[??]]]].
exists (f1 (g1 p)). exists (f2 (g2 q)).
split.
+ apply map_rel_in.
apply map_rel_in. auto.
+ split.
* rewrite <- H2. rewrite <- H. simpl; auto.
* rewrite <- H3. rewrite <- H0. simpl; auto.
Qed.
Lemma exp_fmap_respects hf (A B C D:ob (EMBED hf))
(f f':A → B)
(g g':C → D) :
f ≈ f' -> g ≈ g' ->
exp_fmap hf A B C D f g ≈ exp_fmap hf A B C D f' g'.
Proof.
intros.
apply embed_lift'. intro.
simpl.
unfold exp_fmap_func. destruct x; simpl.
split; hnf; simpl; intros.
- apply unmap_rel in H1.
destruct H1 as [p [q [?[??]]]].
exists (f' p). exists (g' q).
split.
+ apply map_rel_in. auto.
+ split.
* rewrite <- H2.
rewrite H. auto.
* rewrite <- H3. rewrite H0. auto.
- apply unmap_rel in H1.
destruct H1 as [p [q [?[??]]]].
exists (f p). exists (g q).
split.
+ apply map_rel_in. auto.
+ split. rewrite <- H2. rewrite H; auto.
rewrite <- H3. rewrite H0. auto.
Qed.
Program Definition expF hf : functor (PROD (EMBED hf) (EMBED hf)) (EMBED hf) :=
Functor (PROD (EMBED hf) (EMBED hf)) (EMBED hf)
(fun X => (@PLT.exp hf
(@obl (EMBED hf) (EMBED hf) X)
(@obr (EMBED hf) (EMBED hf) X)))
(fun (X Y:ob (PROD (EMBED hf) (EMBED hf))) fg =>
exp_fmap hf (@obl (EMBED hf) (EMBED hf) X)
(@obl (EMBED hf) (EMBED hf) Y)
(@obr (EMBED hf) (EMBED hf) X)
(@obr (EMBED hf) (EMBED hf) Y)
(@homl (EMBED hf) (EMBED hf) X Y fg)
(@homr (EMBED hf) (EMBED hf) X Y fg))
_ _ _.
Next Obligation.
simpl; intros.
destruct A as [A B]. destruct f as [f g]. simpl.
destruct H. simpl in *.
apply exp_fmap_ident; auto.
Qed.
Next Obligation.
simpl; intros.
destruct A as [A A'].
destruct B as [B B'].
destruct C as [C C']. simpl in *.
destruct f as [f f'].
destruct g as [g g'].
destruct h as [h h']. simpl in *.
destruct H; simpl in *.
symmetry. apply exp_fmap_compose; auto.
Qed.
Next Obligation.
simpl; intros.
destruct A as [A A'].
destruct B as [B B'].
destruct f as [f f'].
destruct g as [g g'].
destruct H; simpl in *.
apply exp_fmap_respects; auto.
Qed.
Section expF_decompose.
Variable hf:bool.
Variable I:directed_preord.
Variables DS1 DS2 : directed_system I (EMBED hf).
Variable CC1 : cocone DS1.
Variable CC2 : cocone DS2.
Hypothesis decompose1 : forall x:cocone_point CC1,
{ i:I & { a:ds_F DS1 i | cocone_spoke CC1 i a ≈ x }}.
Hypothesis decompose2 : forall x:cocone_point CC2,
{ i:I & { a:ds_F DS2 i | cocone_spoke CC2 i a ≈ x }}.
Lemma finrel_decompose
(X:finset (PLT.ord (cocone_point CC1) × PLT.ord (cocone_point CC2))%cat_ob) :
forall (Hinh : inh hf X),
{ k:I & { Y:finset (PLT.ord (ds_F DS1 k) × PLT.ord (ds_F DS2 k))%cat_ob |
X ≈ map_rel (cocone_spoke CC1 k) (cocone_spoke CC2 k) Y }}.
Proof.
induction X; intros.
- destruct hf.
{ hnf in Hinh.
elimtype False. destruct Hinh. apply nil_elem in H. auto.
}
destruct (choose_ub_set I nil).
exists x. exists nil. simpl; auto.
- case_eq X; intros.
+ destruct a as [a b].
destruct (decompose1 a) as [i [a' ?]].
destruct (decompose2 b) as [j [b' ?]].
destruct (choose_ub I i j) as [k [??]].
exists k.
exists ((ds_hom DS1 i k H0 a', ds_hom DS2 j k H1 b')::nil).
simpl.
apply finset_cons_eq; auto.
cut (b ≈ cocone_spoke CC2 k (ds_hom DS2 j k H1 b')).
{ cut (a ≈ cocone_spoke CC1 k (ds_hom DS1 i k H0 a')).
{ intros [??] [??]; split; split; auto. }
rewrite <- e.
rewrite (cocone_commute CC1 i k H0). auto.
}
rewrite <- e0.
rewrite (cocone_commute CC2 j k H1). auto.
+ rewrite <- H.
destruct IHX as [k [Y ?]].
{ rewrite H. eapply elem_inh. apply cons_elem. eauto. }
destruct a as [p q]. simpl in *.
destruct (decompose1 p) as [i [p' ?]].
destruct (decompose2 q) as [j [q' ?]].
destruct (choose_ub_set I (i::j::k::nil)) as [m ?].
assert (i≤m).
{ apply u. apply cons_elem; auto. }
assert (j≤m).
{ apply u.
apply cons_elem; right.
apply cons_elem; auto.
}
assert (k≤m).
{ apply u.
apply cons_elem; right.
apply cons_elem; right.
apply cons_elem; auto.
}
set (Y' := map_rel (ds_hom DS1 k m H2) (ds_hom DS2 k m H2) Y).
exists m.
exists ((ds_hom DS1 i m H0 p', ds_hom DS2 j m H1 q')::Y').
simpl.
apply finset_cons_eq; auto.
cut (cocone_spoke CC2 m (ds_hom DS2 j m H1 q') ≈ q).
{ cut (cocone_spoke CC1 m (ds_hom DS1 i m H0 p') ≈ p).
{ intros [??] [??]; split; split; auto. }
rewrite <- e0.
rewrite (cocone_commute CC1 i m H0). auto.
}
rewrite <- e1.
rewrite (cocone_commute CC2 j m H1). auto.
rewrite e.
unfold Y'.
clear. induction Y; simpl; auto.
destruct a as [a b]. simpl.
apply finset_cons_eq; auto.
split; split; simpl.
* rewrite (cocone_commute CC1 k m H2). auto.
* rewrite (cocone_commute CC2 k m H2). auto.
* rewrite (cocone_commute CC1 k m H2). auto.
* rewrite (cocone_commute CC2 k m H2). auto.
Qed.
End expF_decompose.
Lemma expF_continuous hf : continuous_functor (expF hf).
Proof.
repeat intro.
apply decompose_is_colimit.
simpl. intros.
destruct x as [x Hx].
set (DS1 := dir_sys_app DS (fstF _ _)).
set (DS2 := dir_sys_app DS (sndF _ _)).
set (CC1 := cocone_app CC (fstF _ _)).
set (CC2 := cocone_app CC (sndF _ _)).
destruct (finrel_decompose hf I DS1 DS2 CC1 CC2) with x
as [k [x' ?]].
- apply colimit_decompose. apply fstF_continuous. auto.
- apply colimit_decompose. apply sndF_continuous. auto.
- destruct Hx; auto.
- exists k.
assert (is_joinable_relation hf x').
{ apply (is_joinable_unmap_rel hf _ _ _ _
(cocone_spoke CC1 k) (cocone_spoke CC2 k) x').
split; intros.
- eapply inh_eq. apply e.
destruct Hx; auto.
- destruct Hx.
destruct (H2 G) with x0 as [y [??]]; auto.
+ rewrite e; auto.
+ exists y; split; auto.
destruct e. apply H5; auto.
}
exists (exist _ x' H).
simpl.
split; hnf; simpl; intros.
+ destruct e. apply H2 in H0.
exists a. exists b. auto.
+ destruct e. apply H1 in H0.
exists a. exists b. auto.
Qed.