-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRelOperators.v
More file actions
896 lines (692 loc) · 23.4 KB
/
RelOperators.v
File metadata and controls
896 lines (692 loc) · 23.4 KB
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
Require Export RelDefinitions.
Require Import RelClasses.
Require Import Relators.
(** ** Union of relations *)
Definition rel_union {A B} (R1 R2: rel A B): rel A B :=
fun x y => R1 x y \/ R2 x y.
Arguments rel_union {_ _} R1%rel R2%rel _ _.
Infix "\/" := rel_union : rel_scope.
Global Instance rel_union_subrel {A B}:
Monotonic (@rel_union A B) (subrel ++> subrel ++> subrel).
Proof.
clear.
firstorder.
Qed.
Global Instance rel_union_subrel_params:
Params (@rel_union) 4 := { }.
(** Since we're forced to commit to a branch, we can't use [RIntro],
but can still provide [RExists] instances. *)
Lemma rel_union_rexists_l {A B} (R1 R2: rel A B) x y:
RExists (R1 x y) (R1 \/ R2) x y.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ (_ \/ _) _ _) =>
eapply rel_union_rexists_l : typeclass_instances.
Lemma rel_union_rexists_r {A B} (R1 R2: rel A B) x y:
RExists (R2 x y) (R1 \/ R2) x y.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ (_ \/ _) _ _) =>
eapply rel_union_rexists_r : typeclass_instances.
(** More often, we can solve a [rel_union] goal using a monotonicity
property, and the [subrel] instances below. *)
Lemma rel_union_subrel_rexists_l {A B} (R R1 R2: rel A B):
RExists (subrel R R1) subrel R (R1 \/ R2)%rel.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ subrel _ (_ \/ _)%rel) =>
eapply rel_union_subrel_rexists_l : typeclass_instances.
Lemma rel_union_subrel_rexists_r {A B} (R R1 R2: rel A B):
RExists (subrel R R2) subrel R (R1 \/ R2)%rel.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ subrel _ (_ \/ _)%rel) =>
eapply rel_union_subrel_rexists_r : typeclass_instances.
Lemma rel_union_lub {A B} (R1 R2 R: rel A B):
RIntro (subrel R1 R /\ subrel R2 R) subrel (R1 \/ R2)%rel R.
Proof.
firstorder.
Qed.
Global Hint Extern 2 (RIntro _ subrel (_ \/ _)%rel _) =>
eapply rel_union_lub : typeclass_instances.
Lemma rel_union_refl_l {A} (R1 R2: rel A A):
Reflexive R1 ->
Reflexive (R1 \/ R2).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Reflexive (_ \/ _)) =>
eapply rel_union_refl_l : typeclass_instances.
Lemma rel_union_refl_r {A} (R1 R2: rel A A):
Reflexive R2 ->
Reflexive (R1 \/ R2).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Reflexive (_ \/ _)) =>
eapply rel_union_refl_r : typeclass_instances.
Lemma rel_union_corefl {A} (R1 R2: rel A A):
Coreflexive R1 ->
Coreflexive R2 ->
Coreflexive (R1 \/ R2).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Coreflexive (_ \/ _)) =>
eapply rel_union_corefl : typeclass_instances.
Lemma rel_union_sym {A} (R1 R2: rel A A):
Symmetric R1 ->
Symmetric R2 ->
Symmetric (R1 \/ R2).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Symmetric (_ \/ _)) =>
eapply rel_union_sym : typeclass_instances.
(** ** Intersection of relations *)
Definition rel_inter {A B} (R1 R2: rel A B): rel A B :=
fun x y => R1 x y /\ R2 x y.
Arguments rel_inter {_ _} R1%rel R2%rel _ _.
Infix "/\" := rel_inter : rel_scope.
Global Instance rel_inter_subrel {A B}:
Monotonic (@rel_inter A B) (subrel ++> subrel ++> subrel).
Proof.
clear.
firstorder.
Qed.
Global Instance rel_inter_params:
Params (@rel_inter) 4 := { }.
(** In some cases, the relation in the goal will cause existential
variables to be instantiated accordingly; for instance, [rstep] run
on [?R x y |- (R1 /\ R2) x y] will instantiate [?R := R1 /\ R2].
Because of this, splitting a [rel_inter] goal into two subgoals may
cause a dead-end and we have to use [RExists] for the following
rule. *)
Lemma rel_inter_rexists {A B} (R1 R2: rel A B) x y:
RExists (R1 x y /\ R2 x y) (R1 /\ R2) x y.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ (_ /\ _) _ _) =>
eapply rel_inter_rexists : typeclass_instances.
Lemma rel_inter_subrel_rexists_l {A B} (R1 R2 R: rel A B):
RExists (subrel R1 R) subrel (R1 /\ R2)%rel R.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ subrel (_ /\ _)%rel _) =>
eapply rel_inter_subrel_rexists_l : typeclass_instances.
Lemma rel_inter_subrel_rexists_r {A B} (R1 R2 R: rel A B):
RExists (subrel R2 R) subrel (R1 /\ R2)%rel R.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ subrel (_ /\ _)%rel _) =>
eapply rel_inter_subrel_rexists_r : typeclass_instances.
Lemma rel_inter_glb {A B} (R R1 R2: rel A B):
RIntro (subrel R R1 /\ subrel R R2) subrel R (R1 /\ R2)%rel.
Proof.
firstorder.
Qed.
Global Hint Extern 2 (RIntro _ subrel _ (_ /\ _)%rel) =>
eapply rel_inter_glb : typeclass_instances.
Lemma rel_inter_refl {A} (R1 R2: rel A A):
Reflexive R1 ->
Reflexive R2 ->
Reflexive (R1 /\ R2).
Proof.
intros H1 H2.
split; reflexivity.
Qed.
Global Hint Extern 2 (Reflexive (_ /\ _)) =>
eapply rel_inter_refl : typeclass_instances.
Lemma rel_inter_corefl_l {A} (R1 R2: rel A A):
Coreflexive R1 ->
Coreflexive (R1 /\ R2).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Coreflexive (_ /\ _)) =>
eapply rel_inter_corefl_l : typeclass_instances.
Lemma rel_inter_corefl_r {A} (R1 R2: rel A A):
Coreflexive R2 ->
Coreflexive (R1 /\ R2).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Coreflexive (_ /\ _)) =>
eapply rel_inter_corefl_r : typeclass_instances.
Lemma rel_inter_trans {A} (R1 R2: rel A A):
Transitive R1 ->
Transitive R2 ->
Transitive (R1 /\ R2).
Proof.
intros H1 H2 x y z [Hxy1 Hxy2] [Hyz1 Hyz2].
split; etransitivity; eassumption.
Qed.
Global Hint Extern 2 (Transitive (_ /\ _)) =>
eapply rel_inter_trans : typeclass_instances.
Lemma rel_inter_sym {A} (R1 R2: rel A A):
Symmetric R1 ->
Symmetric R2 ->
Symmetric (R1 /\ R2).
Proof.
intros H1 H2 x y [Hxy1 Hxy2].
split; symmetry; assumption.
Qed.
Global Hint Extern 2 (Symmetric (_ /\ _)) =>
eapply rel_inter_sym : typeclass_instances.
Global Instance rel_inter_flip_sym {A} (R: rel A A):
Symmetric (R /\ flip R).
Proof.
intros x y [Hxy Hyx].
split; assumption.
Qed.
(** On a related note, a symmetric subrelation of [R] is also a
subrelation of its inverse. *)
Lemma subrel_sym_flip {A} (R R': relation A):
Symmetric R ->
RStep (subrel R R') (subrel R (flip R')).
Proof.
intros HR H x y Hxy.
symmetry in Hxy.
firstorder.
Qed.
Global Hint Extern 60 (RStep _ (subrel _ (flip _))) =>
eapply subrel_sym_flip : typeclass_instances.
(** ** Implication *)
Definition rel_impl {A B} (R1 R2: rel A B): rel A B :=
fun x y => R1 x y -> R2 x y.
Global Instance rel_impl_subrel {A B}:
Monotonic (@rel_impl A B) (subrel --> subrel ++> subrel).
Proof.
firstorder.
Qed.
Global Instance rel_impl_subrel_params:
Params (@rel_impl) 4 := { }.
Lemma rel_impl_rintro {A B} (R1 R2: rel A B) x y:
RIntro (R1 x y -> R2 x y) (rel_impl R1 R2) x y.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RIntro _ (rel_impl _ _) _ _) =>
eapply rel_impl_rintro : typeclass_instances.
Lemma rel_impl_relim {A B} (R1 R2: rel A B) x y:
RElim (rel_impl R1 R2) x y (R1 x y) (R2 x y).
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RElim (rel_impl _ _) _ _ _ _) =>
eapply rel_impl_relim : typeclass_instances.
Lemma rel_impl_subrel_codomain {A B} (R1 R2: rel A B):
Related R2 (rel_impl R1 R2) subrel.
Proof.
firstorder.
Qed.
(** ** The bottom and top relations *)
Definition rel_bot {A B}: rel A B :=
fun x y => False.
Notation "⊥" := rel_bot : rel_scope.
Lemma rel_bot_subrel {A B} (R: rel A B):
Related ⊥%rel R subrel.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (Related ⊥%rel _ _) =>
eapply rel_bot_subrel : typeclass_instances.
Lemma rel_bot_relim {A B} (x: A) (y: B) P:
RElim ⊥ x y True P.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RElim ⊥ _ _ _ _) =>
eapply rel_bot_relim : typeclass_instances.
Definition rel_top {A B}: rel A B :=
fun x y => True.
Notation "⊤" := rel_top : rel_scope.
Lemma rel_top_rintro {A B} (x: A) (y: B):
RIntro True ⊤ x y.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RIntro _ ⊤ _ _) =>
eapply rel_top_rintro : typeclass_instances.
Global Instance rel_top_equiv {A}:
@Equivalence A ⊤.
Proof.
repeat constructor.
Qed.
(** ** Relation equivalence *)
Definition eqrel {A B}: rel (rel A B) (rel A B) :=
(subrel /\ flip subrel)%rel.
Arguments eqrel {_ _} RA%rel RB%rel.
Global Instance eqrel_equivalence A B:
Equivalence (@eqrel A B).
Proof.
unfold eqrel.
split; typeclasses eauto.
Qed.
Global Instance eqrel_subrel A B:
Related (@eqrel A B) (@subrel A B) subrel.
Proof.
firstorder.
Qed.
(** ** Relation composition *)
Definition rel_compose {A B C} (RAB: rel A B) (RBC: rel B C): rel A C :=
fun x z => exists y, RAB x y /\ RBC y z.
Global Hint Unfold rel_compose : core.
Global Instance rel_compose_subrel {A B C}:
Monotonic (@rel_compose A B C) (subrel ++> subrel ++> subrel).
Proof.
firstorder.
Qed.
Global Instance rel_compose_eqrel {A B C}:
Monotonic (@rel_compose A B C) (eqrel ==> eqrel ==> eqrel).
Proof.
firstorder.
Qed.
Global Instance rel_compose_params:
Params (@rel_compose) 4 := { }.
Lemma rel_compose_id_left {A B} (R: rel A B):
eqrel (rel_compose R eq) R.
Proof.
unfold rel_compose.
split; intros x y; firstorder; congruence.
Qed.
Lemma rel_compose_id_right {A B} (R: rel A B):
eqrel (rel_compose eq R) R.
Proof.
unfold rel_compose.
split; intros x y; firstorder; congruence.
Qed.
Lemma rel_compose_assoc {A B C D} (RAB: rel A B) (RBC: rel B C) (RCD: rel C D):
eqrel
(rel_compose (rel_compose RAB RBC) RCD)
(rel_compose RAB (rel_compose RBC RCD)).
Proof.
unfold rel_compose.
split; intros x y; firstorder; congruence.
Qed.
(** Transitivity and decomposition can be expressed in terms of
[rel_compose] in the following way. *)
Global Instance rel_compose_rcompose {A B C} (RAB : rel A B) (RBC : rel B C) :
RCompose RAB RBC (rel_compose RAB RBC).
Proof.
firstorder.
Qed.
Global Instance rel_compose_rdecompose {A B C} (RAB : rel A B) (RBC : rel B C) :
RDecompose RAB RBC (rel_compose RAB RBC).
Proof.
firstorder.
Qed.
Global Instance rcompose_subrel `(RCompose) :
Related (rel_compose RAB RBC) RAC subrel.
Proof.
firstorder.
Qed.
Global Instance rdecompose_subrel `(RDecompose) :
Related RAC (rel_compose RAB RBC) subrel.
Proof.
firstorder.
Qed.
(** ** Pulling a relation along functions *)
Definition rel_pull {A B A' B'} f g (R: rel A' B'): rel A B :=
fun x y => R (f x) (g y).
(** We use the following notation. Left associativity would make more
sense but we have to match [Coq.Classes.RelationPairs]. *)
Notation "R @@ ( f , g )" := (rel_pull f g R)
(at level 30, right associativity) : rel_scope.
Notation "R @@ f" := (rel_pull f f R)
(at level 30, right associativity) : rel_scope.
Notation "R @@ ( f )" := (rel_pull f f R)
(at level 30, right associativity) : rel_scope.
Global Instance rel_pull_subrel {A B A' B'} (f: A -> A') (g: B -> B'):
Monotonic (rel_pull f g) (subrel ++> subrel).
Proof.
firstorder.
Qed.
Global Instance rel_pull_subrel_params:
Params (@rel_pull) 3 := { }.
(** In the restricted case where [f = g], [rel_pull] preserves many
properties of the underlying relation. *)
Lemma rel_pull_refl {A B} (f: A -> B) (R: rel B B):
Reflexive R ->
Reflexive (R @@ f).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Reflexive (rel_pull _ _ _)) =>
eapply rel_pull_refl : typeclass_instances.
Lemma rel_pull_sym {A B} (f: A -> B) R:
Symmetric R ->
Symmetric (R @@ f).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (Symmetric (rel_pull _ _ _)) =>
eapply rel_pull_sym : typeclass_instances.
Lemma rel_pull_rcompose {A1 A2 A3 B1 B2 B3} f g h R12 R23 R13 :
@RCompose B1 B2 B3 R12 R23 R13 ->
@RCompose A1 A2 A3 (R12 @@ (f, g)) (R23 @@ (g, h)) (R13 @@ (f, h)).
Proof.
firstorder.
Qed.
Global Hint Extern 1 (RCompose _ _ (rel_pull _ _ _)) =>
eapply rel_pull_rcompose : typeclass_instances.
(** The introduction rule is straightforward, but changes the head
terms to the functions used with [rel_pull]. This means that an
[RIntro] rule would short-circuit any relational property formulated
for the original terms, even if the codomain is a matching
[rel_pull] relation and we have an appropriate [RElim] instance.
To avoid shadowing such properties, we define our introduction rule
as an [RStep] with a low priority. See test [rel_pull_2]. *)
Lemma rel_pull_rintro {A B A' B'} (f: A -> A') (g: B -> B') R x y:
RStep (R (f x) (g y)) ((R @@ (f, g))%rel x y).
Proof.
firstorder.
Qed.
Global Hint Extern 60 (RStep _ ((_ @@ (_, _))%rel _ _)) =>
eapply rel_pull_rintro : typeclass_instances.
(** We can reuse an instance of [RElim] for the underlying relation to
provide corresponding instances for the pulled relation. *)
Lemma rel_pull_relim {A B A' B'} (f: A -> A') (g: B -> B') R x y P Q:
RElim R (f x) (g y) P Q ->
RElim (R @@ (f, g)) x y P Q.
Proof.
firstorder.
Qed.
Global Hint Extern 1 (RElim (_ @@ (_, _)) _ _ _ _) =>
eapply rel_pull_relim : typeclass_instances.
(** ** Pushing a relation along functions *)
Inductive rel_push {A1 A2 B1 B2} f g (R: rel A1 A2): rel B1 B2 :=
rel_push_rintro x y: RIntro (R x y) (rel_push f g R) (f x) (g y).
Global Hint Extern 1 (RIntro _ (rel_push _ _ _) _ _) =>
eapply rel_push_rintro : typeclass_instances.
(** The level we choose here is to match the notation used for
[PTree.get] in Compcert's [Maps] library. *)
Notation "R !! ( f , g )" := (rel_push f g R)
(at level 1) : rel_scope.
Notation "R !! f" := (rel_push f f R)
(at level 1) : rel_scope.
Notation "R !! ( f )" := (rel_push f f R)
(at level 1) : rel_scope.
Global Instance rel_push_subrel {A1 A2 B1 B2} (f: A1 -> B1) (g: A2 -> B2):
Proper (subrel ++> subrel) (rel_push f g).
Proof.
intros R1 R2 HR x y Hxy.
destruct Hxy.
rintro; eauto.
Qed.
Global Instance rel_push_subrel_params:
Params (@rel_push) 3 := { }.
Lemma rel_push_corefl {A B} (f: A -> B) (R: rel A A):
Coreflexive R ->
Coreflexive (R !! f).
Proof.
intros H _ _ [x y Hxy].
f_equal.
eauto using coreflexivity.
Qed.
Global Hint Extern 1 (Coreflexive (_ !! _)) =>
eapply rel_push_corefl : typeclass_instances.
(** When using [R !! fst] or [R !! snd], if [rel_push_intro] does not
apply, we can use the following instances instead. *)
Lemma rel_push_fst_rexists {A1 A2 B1 B2} (x1:A1) (x2:A2) (y1:B1) (y2:B2) R:
RExists (R (x1, y1) (x2, y2)) (R !! fst) x1 x2.
Proof.
intros H.
change x1 with (fst (x1, y1)).
change x2 with (fst (x2, y2)).
rintro.
assumption.
Qed.
Global Hint Extern 1 (RExists _ (_ !! fst) _ _) =>
eapply rel_push_fst_rexists : typeclass_instances.
Lemma rel_push_snd_rexists {A1 A2 B1 B2} (x1:A1) (x2:A2) (y1:B1) (y2:B2) R:
RExists (R (x1, y1) (x2, y2)) (R !! snd) y1 y2.
Proof.
intros H.
change y1 with (snd (x1, y1)).
change y2 with (snd (x2, y2)).
rintro.
assumption.
Qed.
Global Hint Extern 1 (RExists _ (_ !! snd) _ _) =>
eapply rel_push_snd_rexists : typeclass_instances.
(** ** Relation currying *)
(* An interesting special case of [rel_pull] is [rel_curry], which
takes a relation over [A * B -> C] and turns it into a relation
over [A -> B -> C].
[rel_curry] is particularly useful when two (curried) arguments
to a given function have to be related in a dependent way. For
example in Compcert, memory injections relate memory blocks and
offsets jointly, but many operations have those as two separate
arguments. To state the relational property of such operations, we
can uncurry a joint relation on (block, offset) pairs.
[rel_curry] can be obtained by pulling back the original relation
along [uncurry]: *)
Definition curry {A B C} (f: A * B -> C): A -> B -> C :=
fun a b => f (a, b).
Definition uncurry {A B C} (f: A -> B -> C): A * B -> C :=
fun ab => match ab with (a, b) => f a b end.
Definition rel_curry {A1 B1 C1 A2 B2 C2} (R: rel (A1*B1->C1) (A2*B2->C2)) :=
(R @@ uncurry)%rel.
Definition rel_uncurry {A1 B1 C1 A2 B2 C2} (R: rel (A1->B1->C1) (A2->B2->C2)) :=
(R @@ curry)%rel.
(** We use the following notation for [rel_curry], which evokes
splitting a pair into two separate arguments. Note that we use the
same priority as for [++>], [-->], and [==>], because we usually
want [rel_curry] to nest in such a way that for instance,
[S ++> % R --> % R ++> impl] will be interpreted as
[S ++> rel_curry (R --> rel_curry (R ++> impl))]. *)
Notation "% R" := (rel_curry R) (at level 55, right associativity) : rel_scope.
(** In order to provide an [RElim] instance for [rel_curry], we will
rely on the fact that:
uncurry f (x1, x2) x3 ... xn = f x1 x2 x3 ... xn,
and that:
rel_curry R f g <-> R (uncurry f) (uncurry g),
so that when the instance of [RElim] associated with [R] allows us
to show:
Rcod (uncurry f (x1, x2) x3 ... xn) (uncurry g (y1, y2) y3 ... yn)
we can convert it into an instance for proving:
Rcod (f x1 x2 x3 ... xn) (g y1 y2 y3 ... yn),
which is what will be expected for [monotonicity]. To accomplish
this, we need to [unfold uncurry] in the result provided for [R]
before we use it to solve the [rel_uncurry] case. This helper class
does this. *)
Class UnfoldUncurry {A} (before: A) (after: A) :=
unfold_uncurry_before_after: before = after.
Ltac unfold_uncurry :=
match goal with
| |- context C[uncurry ?f ?p] =>
is_evar p;
let T := type of p in
let Av := fresh in evar (Av: Type);
let A := eval red in Av in clear Av;
let Bv := fresh in evar (Bv: Type);
let B := eval red in Bv in clear Bv;
unify T (prod A B)%type;
let av := fresh in evar (av : A);
let a := eval red in av in clear av;
let bv := fresh in evar (bv : B);
let b := eval red in bv in clear bv;
let G := context C[f a b] in
unify p (a, b);
change G
end.
Global Hint Extern 1 (UnfoldUncurry ?P ?Q) =>
repeat unfold_uncurry; constructor : typeclass_instances.
(** Now we can provide a somewhat general [RElim] instance for
[rel_uncurry]. *)
Lemma rel_curry_relim {A1 B1 C1 A2 B2 C2} R f g P Q Q':
@RElim (A1 * B1 -> C1) (A2 * B2 -> C2) R (uncurry f) (uncurry g) P Q ->
UnfoldUncurry Q Q' ->
@RElim (A1 -> B1 -> C1) (A2 -> B2 -> C2) (% R) f g P Q'.
Proof.
unfold UnfoldUncurry.
intros; subst.
assumption.
Qed.
Global Hint Extern 60 (RStep _ ((% _)%rel _ _)) =>
eapply rel_pull_rintro : typeclass_instances.
Global Hint Extern 1 (RElim (% _) _ _ _ _) =>
eapply rel_curry_relim : typeclass_instances.
(** ** The [req] relation *)
(** The relation [req a] asserts that both elements are equal to [a].
This comes in handy when expressing the relational properties of
functions: it can be used to fix the value of an argument, or
parametrize it using a variable with a broader scope. *)
Inductive req {A} (a: A): rel A A :=
req_intro: req a a a.
Lemma req_rintro {A} (a: A):
RIntro True (req a) a a.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RIntro _ (req _) _ _) =>
eapply req_rintro : typeclass_instances.
Lemma req_corefl {A} (a: A):
Coreflexive (req a).
Proof.
destruct 1.
reflexivity.
Qed.
Global Hint Extern 0 (Coreflexive (req _)) =>
eapply req_corefl : typeclass_instances.
(** ** Checking predicates on the left and right elements *)
Definition lsat {A B} (P: A -> Prop): rel A B :=
fun x y => P x.
Global Instance lsat_subrel A B:
Monotonic (@lsat A B) ((- ==> impl) ++> subrel).
Proof.
firstorder.
Qed.
Global Instance lsat_subrel_params:
Params (@lsat) 3 := { }.
Definition rsat {A B} (P: B -> Prop): rel A B :=
fun x y => P y.
Global Instance rsat_subrel A B:
Monotonic (@rsat A B) ((- ==> impl) ++> subrel).
Proof.
firstorder.
Qed.
Global Instance rsat_subrel_params:
Params (@rsat) 3 := { }.
Inductive psat {A} (I: A -> Prop) (x: A): A -> Prop :=
psat_intro: I x -> psat I x x.
Global Instance psat_subrel A:
Monotonic (@psat A) ((- ==> impl) ++> subrel).
Proof.
intros P Q HPQ x _ [Hx].
constructor. apply HPQ. assumption.
Qed.
Global Instance psat_subrel_params:
Params (@psat) 3 := { }.
Lemma psat_corefl {A} (I: A -> Prop):
Coreflexive (psat I).
Proof.
intros x _ [_]. reflexivity.
Qed.
Global Hint Extern 0 (Coreflexive (psat _)) =>
eapply psat_corefl : typeclass_instances.
(** ** Relation versions of [ex] and [all] *)
(** Ideally we would overload the [forall] and [exists] notation to
use the relation version under the [rel] scope. But as long as
we keep [rel_scope] open globally, we can't really do that
without breaking everything. So we use our own keyword [rexists] and
[rforall] instead. *)
Definition rel_all {A B C} (R: C -> rel A B): rel A B :=
fun x y => forall c, R c x y.
Notation "'rforall' x .. y , p" :=
(rel_all (fun x => .. (rel_all (fun y => p%rel)) .. ))
(at level 200, x binder, right associativity)
: rel_scope.
Lemma rel_all_rintro {A B C} (R: C -> rel A B) m n:
RIntro (forall c : C, R c m n) (rel_all R) m n.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RIntro _ (rel_all _) _ _) =>
eapply rel_all_rintro : typeclass_instances.
Lemma rel_all_relim {A B C} (R: C -> rel A B) x y P Q:
(exists c, RElim (R c) x y P Q) ->
RElim (rel_all R) x y P Q.
Proof.
firstorder.
Qed.
Global Hint Extern 1 (RElim (rel_all _) _ _ _ _) =>
eapply rel_all_relim; eexists : typeclass_instances.
Definition rel_ex {A B C} (R: C -> rel A B): rel A B :=
fun x y => exists c, R c x y.
Notation "'rexists' x .. y , p" :=
(rel_ex (fun x => .. (rel_ex (fun y => p%rel)) ..))
(at level 200, x binder, right associativity)
: rel_scope.
Lemma rel_ex_rintro {A B C} (R: C -> rel A B) c m n:
RExists (R c m n) (rel_ex R) m n.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ (rel_ex _) _ _) =>
eapply rel_ex_rintro : typeclass_instances.
Lemma rel_ex_relim {A B C} (R: C -> rel A B) x y P Q:
(forall c, RElim (R c) x y P Q) ->
RElim (rel_ex R) x y P Q.
Proof.
firstorder.
Qed.
Global Hint Extern 1 (RElim (rel_ex _) _ _ _ _) =>
eapply rel_ex_relim : typeclass_instances.
(** ** The [rel_incr] construction *)
(** XXX: this is on the way out, see KLR.v *)
(** When dealing with Kripke logical relations, we have a family of
relations indexed by a type of worlds, as well as an accessibility
relation over this type of worlds. We often want to state that there
exists a world accessible from a base one in which the relation
holds. The following construction expresses this. *)
Definition rel_incr {W A B} (acc: rel W W) (R: W -> rel A B): W -> rel A B :=
fun w a b => exists w', acc w w' /\ R w' a b.
(** While it's possible to define a more general monotonicity property
for [rel_incr], this one is well-behaved and usually corresponds to
what we want. *)
Global Instance rel_incr_subrel {W A B} acc:
Transitive acc ->
Monotonic (@rel_incr W A B acc) ((- ==> subrel) ++> acc --> subrel).
Proof.
intros Hacc R1 R2 HR w1 w2 Hw a b (w1' & Hw1' & Hab).
eexists; split.
- transitivity w1;
eassumption.
- apply HR.
assumption.
Qed.
Global Instance rel_incr_subrel_params:
Params (@rel_incr) 4 := { }.
(** Note the order of the premises in our intro rule. We want to first
determine what [w'] should be, then prove [acc w w']. *)
Lemma rel_incr_rintro {W A B} (acc: rel W W) (R: W -> rel A B) w w' m n:
RExists (R w' m n /\ acc w w') (rel_incr acc R w) m n.
Proof.
firstorder.
Qed.
Global Hint Extern 0 (RExists _ (rel_incr _ _ _) _ _) =>
eapply rel_incr_rintro : typeclass_instances.
Lemma rel_incr_rdestruct {W A B} acc R w T:
(forall w, exists Tw, RDestruct (R w) Tw /\ Convertible (T w) Tw) ->
RDestruct
(@rel_incr W A B acc R w)
(fun P => forall w', acc w w' -> Delay.unpack (T w' P)).
Proof.
clear.
intros HR m n (w' & Hw' & Hmn) P H.
destruct (HR w') as (Tw & HRw' & HTw).
eapply rdestruct; eauto.
destruct HTw.
eapply H; eauto.
Qed.
Global Hint Extern 2 (RDestruct (rel_incr _ _ _) _) =>
eapply rel_incr_rdestruct; intro; eexists; split : typeclass_instances.