-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathofe.v
More file actions
2379 lines (2070 loc) · 98.9 KB
/
Copy pathofe.v
File metadata and controls
2379 lines (2070 loc) · 98.9 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
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
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From iris.prelude Require Export prelude.
From iris.prelude Require Import options.
From iris.algebra Require Export stepindex.
Local Set Primitive Projections.
Local Open Scope sidx_scope.
(** This files defines (a shallow embedding of) the category of OFEs: Complete
ordered families of equivalences. This is a cartesian closed category, and
mathematically speaking, the entire development lives in this category. However,
we will generally prefer to work with raw Coq functions plus some registered
[Proper] instances for non-expansiveness. This makes writing such functions much
easier. It turns out that in many cases, we do not even need non-expansiveness. *)
(** Unbundled version *)
Class Dist {SI : sidx} A := dist : SI → relation A.
Global Hint Mode Dist - ! : typeclass_instances.
Global Instance: Params (@dist) 4 := {}.
Notation "x ≡{ n }≡ y" := (dist n x y)
(at level 70, n at next level, format "x ≡{ n }≡ y").
Notation "x ≡{ n }@{ A }≡ y" := (dist (A:=A) n x y)
(at level 70, n at next level, only parsing).
Notation "(≡{ n }≡)" := (dist n) (only parsing).
Notation "(≡{ n }@{ A }≡)" := (dist (A:=A) n) (only parsing).
Notation "( x ≡{ n }≡.)" := (dist n x) (only parsing).
Notation "(.≡{ n }≡ y )" := (λ x, x ≡{n}≡ y) (only parsing).
Global Hint Extern 0 (_ ≡{_}≡ _) => reflexivity : core.
Global Hint Extern 0 (_ ≡{_}≡ _) => symmetry; assumption : core.
Notation NonExpansive f := (∀ n, Proper (dist n ==> dist n) f).
Notation NonExpansive2 f := (∀ n, Proper (dist n ==> dist n ==> dist n) f).
Notation NonExpansive3 f :=
(∀ n, Proper (dist n ==> dist n ==> dist n ==> dist n) f).
Notation NonExpansive4 f :=
(∀ n, Proper (dist n ==> dist n ==> dist n ==> dist n ==> dist n) f).
Tactic Notation "ofe_subst" ident(x) :=
repeat match goal with
| _ => progress simplify_eq/=
| H : @dist ?SI ?A ?d ?n x _ |- _ => setoid_subst_aux (@dist SI A d n) x
| H : @dist ?SI ?A ?d ?n _ x |- _ =>
symmetry in H; setoid_subst_aux (@dist SI A d n) x
end.
Tactic Notation "ofe_subst" :=
repeat match goal with
| _ => progress simplify_eq/=
| H : @dist ?SI ?A ?d ?n ?x _ |- _ => setoid_subst_aux (@dist SI A d n) x
| H : @dist ?SI ?A ?d ?n _ ?x |- _ =>
symmetry in H; setoid_subst_aux (@dist SI A d n) x
end.
Record OfeMixin {SI : sidx} A `{Equiv A, !Dist A} := {
mixin_equiv_dist (x y : A) : x ≡ y ↔ ∀ n, x ≡{n}≡ y;
mixin_dist_equivalence n : Equivalence (@dist SI A _ n);
mixin_dist_le n m (x y : A) : x ≡{n}≡ y → m ≤ n → x ≡{m}≡ y
}.
(** Bundled version *)
Structure ofe {SI : sidx} := Ofe {
ofe_car :> Type;
ofe_equiv : Equiv ofe_car;
ofe_dist : Dist ofe_car;
ofe_mixin : OfeMixin ofe_car
}.
Global Arguments Ofe {_} _ {_ _} _.
Add Printing Constructor ofe.
(* FIXME(Coq #6294) : we need the new unification algorithm here. *)
Global Hint Extern 0 (Equiv _) => refine (ofe_equiv _); shelve : typeclass_instances.
Global Hint Extern 0 (Dist _) => refine (ofe_dist _); shelve : typeclass_instances.
Global Arguments ofe_car : simpl never.
Global Arguments ofe_equiv : simpl never.
Global Arguments ofe_dist : simpl never.
Global Arguments ofe_mixin : simpl never.
(** When declaring instances of subclasses of OFE (like CMRAs and unital CMRAs)
we need Coq to *infer* the canonical OFE instance of a given type and take the
mixin out of it. This makes sure we do not use two different OFE instances in
different places (see for example the constructors [Cmra] and [Ucmra] in the
file [cmra.v].)
In order to infer the OFE instance, we use the definition [ofe_mixin_of'] which
is inspired by the [clone] trick in ssreflect. It works as follows, when type
checking [@ofe_mixin_of' A ?Ac id] Coq faces a unification problem:
ofe_car ?Ac ~ A
which will resolve [?Ac] to the canonical OFE instance corresponding to [A]. The
definition [@ofe_mixin_of' A ?Ac id] will then provide the corresponding mixin.
Note that type checking of [ofe_mixin_of' A id] will fail when [A] does not have
a canonical OFE instance.
The notation [ofe_mixin_of A] that we define on top of [ofe_mixin_of' A id]
hides the [id] and normalizes the mixin to head normal form. The latter is to
ensure that we do not end up with redundant canonical projections to the mixin,
i.e. them all being of the shape [ofe_mixin_of' A id]. *)
Definition ofe_mixin_of' {SI : sidx} A {Ac : ofe} (f : Ac → A) : OfeMixin Ac := ofe_mixin Ac.
Notation ofe_mixin_of A :=
ltac:(let H := eval hnf in (ofe_mixin_of' A id) in exact H) (only parsing).
(** Lifting properties from the mixin *)
Section ofe_mixin.
Context {SI : sidx} {A : ofe}.
Implicit Types x y : A.
Lemma equiv_dist x y : x ≡ y ↔ ∀ n, x ≡{n}≡ y.
Proof. apply (mixin_equiv_dist _ (ofe_mixin A)). Qed.
Global Instance dist_equivalence n : Equivalence (@dist SI A _ n).
Proof. apply (mixin_dist_equivalence _ (ofe_mixin A)). Qed.
Lemma dist_le n m x y : x ≡{n}≡ y → m ≤ n → x ≡{m}≡ y.
Proof. apply (mixin_dist_le _ (ofe_mixin A)). Qed.
End ofe_mixin.
Global Hint Extern 1 (_ ≡{_}≡ _) => apply equiv_dist; assumption : core.
(** Discrete OFEs and discrete OFE elements *)
Class Discrete {SI : sidx} {A : ofe} (x : A) :=
discrete_0 y : x ≡{0ᵢ}≡ y → x ≡ y.
Global Arguments discrete_0 {_ _} _ {_} _ _.
Global Hint Mode Discrete - + ! : typeclass_instances.
Global Instance: Params (@Discrete) 2 := {}.
Class OfeDiscrete {SI : sidx} (A : ofe) :=
#[global] ofe_discrete_discrete (x : A) :: Discrete x.
Global Hint Mode OfeDiscrete - ! : typeclass_instances.
(** OFEs with a completion *)
(** A (converging) "chain" is a sequence of type [A] such that from the n-th
position onwards, everything is n-equal. *)
Record chain {SI : sidx} (A : ofe) := {
chain_car :> SI → A;
chain_cauchy n m: n ≤ m → chain_car m ≡{n}≡ chain_car n
}.
Global Arguments chain_car {_ _} _ _.
Global Arguments chain_cauchy {_ _} _ _ _ _.
(** A "bounded chain" up to step index [n] is similar to a "chain", except that
the sequence has length [n], i.e., it is only defined for indices strictly less
than [n]. *)
Record bchain {SI : sidx} (A : ofe) (n : SI) := {
bchain_car :> ∀ m, m < n → A;
bchain_cauchy m p Hm Hp : m ≤ p → bchain_car p Hp ≡{m}≡ bchain_car m Hm
}.
Global Arguments bchain_car {_ _} _ _ _.
Global Arguments bchain_cauchy {_ _} _ _ _ _ _.
Program Definition chain_map {SI : sidx} {A B : ofe} (f : A → B)
`{NonExpansive f} (c : chain A) : chain B :=
{| chain_car n := f (c n) |}.
Next Obligation. by intros SI A B f Hf c n i ?; apply Hf, chain_cauchy. Qed.
Program Definition bchain_map {SI : sidx} {A B : ofe} (f : A → B)
`{NonExpansive f} {n} (c : bchain A n) : bchain B n :=
{| bchain_car m Hm := f (c m Hm) |}.
Next Obligation.
by intros SI A B f Hf n c m p ? Hm Hp; apply Hf, bchain_cauchy.
Qed.
(** We define a _complete_ OFE, COFE for short. Roughly speaking, the power of
a COFE (over an OFE) is to allow us to compute fixpoints. We want to compute two
different kinds of fixpoints:
1. Fixpoints inside of COFEs. For various kinds of recursive definitions inside
COFEs (e.g., the Iris weakest precondition or a logical relation with
recursive types), we want to compute the fixpoint of a function [f : A → A]
where [A] is a COFE. We can do so if [f] is contractive, using a variant of
Banach's fixpoint theorem. The construction of this fixpoint is given by
[fixpoint] below.
2. Fixpoints on COFEs. For step-indexed types in Iris (e.g., [iProp]), we have
to solve a recursive domain equation on COFEs. The construction of this
fixpoint for natural numbers as the step-index type is given in
[cofe_solver.v].
A COFE extends an OFE [A] with two additional operations:
1. [compl: chain A → A], which takes a chain [c] of elements from [A] and maps
them to a limit element [compl c],
2. [lbcompl: ∀ n, SIdx.limit n → bchain A n → A], which takes a
bounded chain [c] of elements from [A] and maps them to a limit element
[lbcompl c]. The chain is bounded in the sense that its domain ranges from
0 to (but not including) the limit index [n]. (Later we will define
[bcompl] which completes chains that are bounded by any index, not
necessarily a limit index.)
We will see the need for the two different limit operations of a COFE below
as part of the [fixpoint] construction. A more detailed explanation can be
found in the Iris Reference and the Transfinite Iris Documentation (see
https://iris-project.org/pdfs/2021-pldi-transfinite-iris-final-appendix.pdf). *)
(** These notations [Compl] and [LBCompl] are convenient to define instances
(e.g., [ofe_mor_compl] without having to repeat the type. The notation [BCompl]
will be used as the type for [bcompl], completing [bchain] with an arbitrary
bound [n]. *)
Notation Compl A := (chain A%type → A).
Notation BCompl A := (∀ n, bchain A%type n → A).
Notation LBCompl A := (∀ n, SIdx.limit n → bchain A%type n → A).
Class Cofe {SI : sidx} (A : ofe) := {
compl : Compl A;
lbcompl : LBCompl A;
conv_compl n c : compl c ≡{n}≡ c n;
conv_lbcompl {n} Hn (c : bchain A n) {m} Hm : lbcompl n Hn c ≡{m}≡ c m Hm;
(** The bounded limit operation is non-expansive: for chains agreeing up to
the limit index, the bounded limits agree *)
lbcompl_ne n {Hn} (c1 c2 : bchain A n) m :
(∀ p (Hp : p < n), c1 p Hp ≡{m}≡ c2 p Hp) →
lbcompl n Hn c1 ≡{m}≡ lbcompl n Hn c2
}.
Global Arguments compl : simpl never.
Global Arguments lbcompl {_ _ _ _} : simpl never.
Global Hint Mode Cofe - ! : typeclass_instances.
Lemma compl_chain_map {SI : sidx} `{!Cofe A, !Cofe B} (f : A → B) c
`(!NonExpansive f) :
compl (chain_map f c) ≡ f (compl c).
Proof. apply equiv_dist=>n. by rewrite !conv_compl. Qed.
Program Definition chain_const {SI : sidx} {A : ofe} (a : A) : chain A :=
{| chain_car n := a |}.
Next Obligation. by intros SI A a n i _. Qed.
Lemma compl_chain_const {SI : sidx} `{!Cofe A} (a : A) :
compl (chain_const a) ≡ a.
Proof. apply equiv_dist=> n. by rewrite conv_compl. Qed.
Lemma compl_bchain_map {SI : sidx} `{!Cofe A, !Cofe B} (f : A → B)
n Hn (c : bchain A n) `(!NonExpansive f) m :
m < n → lbcompl Hn (bchain_map f c) ≡{m}≡ f (lbcompl Hn c).
Proof. intros Hm. by rewrite !(conv_lbcompl _ _ Hm). Qed.
Program Definition bchain_const {SI : sidx} {A : ofe} (a : A) n : bchain A n :=
{| bchain_car m _ := a |}.
Next Obligation. by intros SI A a n m p Hm Hp Hle. Qed.
Program Definition bchain_le {SI : sidx} `{!Cofe A} {n}
(c : bchain A n) {m} (Hm : m ≤ n) : bchain A m :=
{| bchain_car m' Hm' := c m' (SIdx.lt_le_trans _ _ _ Hm' Hm) |}.
Next Obligation.
intros SI A ? n c m Hm p1 p2 Hp Hp1 Hp2; simpl. by apply (bchain_cauchy n c).
Qed.
Lemma lbcompl_bchain_le {SI : sidx} `{!Cofe A} n Hn m Hm (Hmn : m ≤ n)
(c : bchain A n) p :
p < m → lbcompl Hm (bchain_le c Hmn) ≡{p}≡ lbcompl Hn c.
Proof.
intros Hp. rewrite (conv_lbcompl _ _ Hp).
rewrite conv_lbcompl. by rewrite /bchain_le /=.
Qed.
(** General properties of OFEs *)
Section ofe.
Context {SI : sidx} {A : ofe}.
Implicit Types x y : A.
Global Instance ofe_equivalence : Equivalence ((≡) : relation A).
Proof.
split.
- by intros x; rewrite equiv_dist.
- by intros x y; rewrite !equiv_dist.
- by intros x y z; rewrite !equiv_dist; intros; trans y.
Qed.
Global Instance dist_ne n : Proper (dist n ==> dist n ==> iff) (@dist SI A _ n).
Proof.
intros x1 x2 ? y1 y2 ?; split; intros.
- by trans x1; [|trans y1].
- by trans x2; [|trans y2].
Qed.
Global Instance dist_proper n : Proper ((≡) ==> (≡) ==> iff) (@dist SI A _ n).
Proof.
by move => x1 x2 /equiv_dist Hx y1 y2 /equiv_dist Hy; rewrite (Hx n) (Hy n).
Qed.
Global Instance dist_proper_2 n x : Proper ((≡) ==> iff) (dist n x).
Proof. by apply dist_proper. Qed.
Global Instance Discrete_proper : Proper ((≡) ==> iff) (@Discrete SI A).
Proof. intros x y Hxy. rewrite /Discrete. by setoid_rewrite Hxy. Qed.
Lemma dist_lt n m x y : x ≡{n}≡ y → m < n → x ≡{m}≡ y.
Proof. eauto using dist_le, SIdx.lt_le_incl. Qed.
Lemma dist_le' n n' x y : n' ≤ n → x ≡{n}≡ y → x ≡{n'}≡ y.
Proof. eauto using dist_le. Qed.
Lemma dist_S n x y : x ≡{Sᵢ n}≡ y → x ≡{n}≡ y.
Proof. intros H. eapply dist_lt; eauto using SIdx.lt_succ_diag_r. Qed.
(** [ne_proper] and [ne_proper_2] are not instances to improve efficiency of
type class search during setoid rewriting.
Local Instances of [NonExpansive{,2}] are hence accompanied by instances of
[Proper] built using these lemmas. *)
Lemma ne_proper {B : ofe} (f : A → B) `{!NonExpansive f} :
Proper ((≡) ==> (≡)) f.
Proof. by intros x1 x2; rewrite !equiv_dist; intros Hx n; rewrite (Hx n). Qed.
Lemma ne_proper_2 {B C : ofe} (f : A → B → C) `{!NonExpansive2 f} :
Proper ((≡) ==> (≡) ==> (≡)) f.
Proof.
unfold Proper, respectful; setoid_rewrite equiv_dist.
by intros x1 x2 Hx y1 y2 Hy n; rewrite (Hx n) (Hy n).
Qed.
Lemma conv_compl_le `{!Cofe A} n m (c : chain A) : n ≤ m → compl c ≡{n}≡ c m.
Proof.
transitivity (c n); first by rewrite conv_compl.
symmetry. by rewrite chain_cauchy.
Qed.
Lemma conv_compl_S `{!Cofe A} n (c : chain A) : compl c ≡{n}≡ c (Sᵢ n).
Proof. apply conv_compl_le, SIdx.le_succ_diag_r. Qed.
Lemma discrete_iff n x y `{!TCOr (Discrete x) (Discrete y)} :
x ≡ y ↔ x ≡{n}≡ y.
Proof.
split; intros; [by auto|].
destruct select (TCOr _ _); [|symmetry];
apply (discrete_0 _), dist_le with n; eauto using SIdx.le_0_l.
Qed.
Lemma discrete_iff_0 n x y `{!TCOr (Discrete x) (Discrete y)} :
x ≡{0ᵢ}≡ y ↔ x ≡{n}≡ y.
Proof. by rewrite -!discrete_iff. Qed.
Lemma discrete n x y `{!TCOr (Discrete x) (Discrete y)} :
x ≡{n}≡ y → x ≡ y.
Proof. intros. eapply discrete_iff; done. Qed.
Global Instance ofe_discrete_subrelation `{!OfeDiscrete A} n :
@SolveProperSubrelation A (dist n) (≡).
Proof. intros ???. apply: discrete. done. Qed.
Global Instance ofe_leibniz_subrelation `{!OfeDiscrete A, !LeibnizEquiv A} n :
@SolveProperSubrelation A (dist n) (=).
Proof. intros ?? EQ. unfold_leibniz. apply (is_solve_proper_subrelation EQ). Qed.
End ofe.
(** Contractive functions *)
(** Defined as a record to avoid eager unfolding. *)
Record dist_later {SI : sidx} `{!Dist A} (n : SI) (x y : A) : Prop :=
{ dist_later_lt : ∀ m, m < n → x ≡{m}≡ y }.
Section dist_later.
Context {SI : sidx} {A : ofe}.
Implicit Types x y : A.
Global Instance dist_later_equivalence n : Equivalence (@dist_later SI A _ n).
Proof.
split.
- intros ?; by split.
- intros ?? [H]; split; intros ??; by rewrite H.
- intros ??? [H1] [H2]; split; intros ??; by rewrite H1 ?H2.
Qed.
Lemma dist_dist_later n x y : dist n x y → dist_later n x y.
Proof. intros. split; eauto using dist_lt. Qed.
Lemma dist_later_dist_lt n m (x y : A) : m < n → dist_later n x y → dist m x y.
Proof. intros ? H; by apply H. Qed.
Lemma dist_later_0 x y : dist_later 0ᵢ x y.
Proof. split. intros ? []%SIdx.nlt_0_r. Qed.
Lemma dist_later_S n x y : x ≡{n}≡ y ↔ dist_later (Sᵢ n) x y.
Proof.
split.
- intros Hn; split; intros m Hm%SIdx.lt_succ_r. by eapply dist_le.
- intros Hdist. by apply Hdist, SIdx.lt_succ_r.
Qed.
End dist_later.
(* We don't actually need this lemma (as our tactics deal with this through
other means), but technically speaking, this is the reason why
pre-composing a non-expansive function to a contractive function
preserves contractivity. *)
Lemma ne_dist_later {SI : sidx} {A B : ofe} (f : A → B) :
NonExpansive f → ∀ n, Proper (dist_later n ==> dist_later n) f.
Proof. intros Hf ??? [H]; split; intros ??; by eapply Hf, H. Qed.
Notation Contractive f := (∀ n, Proper (dist_later n ==> dist n) f).
Global Instance const_contractive {SI : sidx} {A B : ofe} (x : A) :
Contractive (@const A B x).
Proof. by intros n y1 y2. Qed.
Section contractive.
Local Set Default Proof Using "Type*".
Context {SI : sidx} {A B : ofe} (f : A → B) `{!Contractive f}.
Implicit Types x y : A.
Lemma contractive_0 x y : f x ≡{0ᵢ}≡ f y.
Proof. by apply (_ : Contractive f), dist_later_0. Qed.
Lemma contractive_dist_later_dist n x y : dist_later n x y → f x ≡{n}≡ f y.
Proof. by apply (_ : Contractive f). Qed.
Lemma contractive_S n x y : x ≡{n}≡ y → f x ≡{Sᵢ n}≡ f y.
Proof. intros. by apply contractive_dist_later_dist, dist_later_S. Qed.
Global Instance contractive_ne : NonExpansive f | 100.
Proof.
intros n x y ?; eapply (dist_lt (Sᵢ n)), SIdx.lt_succ_diag_r.
eapply contractive_dist_later_dist. split.
intros ??%SIdx.lt_succ_r. by eapply dist_le.
Qed.
Global Instance contractive_proper : Proper ((≡) ==> (≡)) f | 100.
Proof. apply (ne_proper _). Qed.
End contractive.
Lemma dist_pointwise_lt {SI : sidx} {A} {B : ofe} n m (f g : A → B):
m < n →
pointwise_relation A (dist_later n) f g →
pointwise_relation A (dist m) f g.
Proof. intros Hlt Hp a. by apply Hp. Qed.
(** The tactic [f_contractive] can be used to prove contractiveness or
non-expansiveness of a function [f]. Inside of the proof of
contractiveness/non-expansiveness, if the current goal is
[g x1 ... xn ≡{i}≡ g y1 ... yn]
for a contractive function [g] (that is used inside of the body of [f]),
then the tactic will try to find a suitable [Contractive] instance for [g]
and apply it. Currently, the tactic only supports one (i.e., [n = 1]) and
two (i.e., [n = 2]) arguments. As a result of applying the [Contractive]
instance for [g], one of the goals will be [dist_later i xi yi] and the tactic
will try to simplify or solve the goal. By simplify we mean that it will
turn hypotheses [dist_later] into [dist].
The tactic [f_contractive] is implemented using
1. [f_contractive_prepare] which looks up a [Contractive] looks at which
function is being applied on both sides of a [dist], looks up the
[Contractive] instance (or the equivalent for two arguments) and applies it.
2. [dist_later_intro] introduces the resulting goals with [dist_later n x y]. *)
Ltac f_contractive_prepare :=
match goal with
| |- ?f _ ≡{_}≡ ?f _ => simple apply (_ : Proper (dist_later _ ==> dist _) f)
| |- ?f _ _ ≡{_}≡ ?f _ _ => simple apply (_ : Proper (dist_later _ ==> _ ==> dist _) f)
| |- ?f _ _ ≡{_}≡ ?f _ _ => simple apply (_ : Proper (_ ==> dist_later _ ==> dist _) f)
end.
(** For the goal [dist_later n x y], the tactic [dist_later_intro as m Hm]
introduces a smaller step-index [Hm : m < n] and tries to lower assumptions in
the context to [m] where possible. The arguments [m] and [Hm] can be omitted,
in which case a fresh identifier is used. *)
Tactic Notation "dist_later_intro" "as" ident(idxName) ident(ltName) :=
match goal with
| |- dist_later ?n ?x ?y =>
constructor; intros idxName ltName;
repeat match goal with
| H: dist_later n _ _ |- _ => destruct H as [H]; specialize (H idxName ltName) as H
| H: pointwise_relation _ (dist_later n) _ _ |- _ =>
apply (dist_pointwise_lt _ idxName _ _ ltName) in H
end
end.
Tactic Notation "dist_later_intro" :=
let m := fresh "m" in
let Hlt := fresh "Hlt" in
dist_later_intro as m Hlt.
(** We combine [f_contractive_prepare] and [dist_later_intro] into the
[f_contractive] tactic.
For all the goals not solved by [dist_later_intro] (i.e., the ones that are
not [dist_later n x y]), we try reflexivity. Since reflexivity can be very
expensive when unification fails, we use [fast_reflexivity]. *)
Tactic Notation "f_contractive" "as" ident(idxName) ident(ltName) :=
f_contractive_prepare;
try dist_later_intro as idxName ltName;
try fast_reflexivity.
Tactic Notation "f_contractive" :=
let m := fresh "m" in
let Hlt := fresh "Hlt" in
f_contractive as m Hlt.
Ltac solve_contractive :=
solve_proper_core ltac:(fun _ => first [f_contractive | f_equiv]).
(** Limit preserving predicates *)
(** To perform induction over a fixpoint ([fixpoint_ind]) and to construct the
COFE over a Sigma type ([sig_cofe]) we need the predicate to be limit
preserving: if it holds for every element of a chain, it must hold for the
limit. *)
Class LimitPreserving {SI : sidx} `{!Cofe A} (P : A → Prop) : Prop := {
limit_preserving_compl (c : chain A) :
(∀ n, P (c n)) → P (compl c);
limit_preserving_lbcompl n Hn (c : bchain A n) :
(∀ m Hm, P (c m Hm)) → P (lbcompl Hn c);
}.
Global Hint Mode LimitPreserving - + + ! : typeclass_instances.
Section limit_preserving.
Context {SI : sidx} `{!Cofe A}.
Implicit Types P Q : A → Prop.
(* These lemmas are not instances as they will never fire automatically...
but they can still be helpful in proving things to be limit preserving. *)
Lemma limit_preserving_sidx_finite `{!SIdxFinite SI} P :
LimitPreserving P ↔ ∀ c : chain A, (∀ n, P (c n)) → P (compl c).
Proof.
split; [by destruct 1|]. intros Hcompl. split; [done|].
intros n Hn. by destruct (SIdx.limit_finite n).
Qed.
Lemma limit_preserving_ext (P Q : A → Prop) :
(∀ x, P x ↔ Q x) → LimitPreserving P → LimitPreserving Q.
Proof.
intros HP [Hcompl Hlbcompl]. split.
- intros c ?. apply HP, Hcompl=> n; by apply HP.
- intros n Hn c HC. apply HP, Hlbcompl=> m Hm. by apply HP.
Qed.
Global Instance limit_preserving_const (P : Prop) : LimitPreserving (λ _ : A, P).
Proof.
split.
- intros c HP. apply (HP 0ᵢ).
- intros n [Hlim Hn] Hc HP. by apply (HP (Sᵢ 0ᵢ)), Hlim, SIdx.neq_0_lt_0.
Qed.
Lemma limit_preserving_discrete P :
Proper (dist 0ᵢ ==> impl) P → LimitPreserving P.
Proof.
intros HP. split.
- intros c Hc. by rewrite (conv_compl 0ᵢ).
- intros n Hn c HPc.
rewrite (conv_lbcompl _ _ (SIdx.limit_lt_0 _ Hn)). apply HPc.
Qed.
Lemma limit_preserving_and P1 P2 :
LimitPreserving P1 →
LimitPreserving P2 →
LimitPreserving (λ x, P1 x ∧ P2 x).
Proof.
intros [Hcompl1 Hlbcompl1] [Hcompl2 Hlbcompl2]. split.
- intros c Hc. split; [apply Hcompl1|apply Hcompl2]; apply Hc.
- intros n Hn c Hc. split; [apply Hlbcompl1|apply Hlbcompl2]; apply Hc.
Qed.
Lemma limit_preserving_impl P1 P2 :
Proper (dist 0ᵢ ==> impl) P1 →
LimitPreserving P2 →
LimitPreserving (λ x, P1 x → P2 x).
Proof.
intros HP1 [Hcompl Hlbcompl]. split.
- intros c Hc HP1c. apply Hcompl=> n. eapply Hc, HP1, HP1c.
apply dist_le with n, SIdx.le_0_l. apply conv_compl.
- intros n Hn c Hc HP1c. apply Hlbcompl=> m Hm. eapply Hc, HP1, HP1c.
apply dist_le with m, SIdx.le_0_l. apply conv_lbcompl.
Qed.
(** This is strictly weaker than the [_impl] variant, but sometimes automation
is better at proving [Proper] for [iff] than for [impl]. *)
Lemma limit_preserving_impl' P1 P2 :
Proper (dist 0ᵢ ==> iff) P1 →
LimitPreserving P2 →
LimitPreserving (λ x, P1 x → P2 x).
Proof.
intros HP1. apply limit_preserving_impl. intros ???.
apply iff_impl_subrelation. by apply HP1.
Qed.
Lemma limit_preserving_forall {B} (P : B → A → Prop) :
(∀ y, LimitPreserving (P y)) →
LimitPreserving (λ x, ∀ y, P y x).
Proof.
intros Hlim. split.
- intros c Hc y. by apply Hlim.
- intros n Hn c Hc y. by apply Hlim.
Qed.
(** We need [SIdxFinite] because [compl_bchain_map] does not hold for [≡],
only for a bounded [≡{m}≡]. *)
Lemma limit_preserving_equiv `{!SIdxFinite SI} `{!Cofe B} (f g : A → B) :
NonExpansive f → NonExpansive g → LimitPreserving (λ x, f x ≡ g x).
Proof.
intros Hf Hg. apply limit_preserving_sidx_finite=> c Hfg.
apply equiv_dist=> n. by rewrite -!compl_chain_map !conv_compl /= Hfg.
Qed.
End limit_preserving.
(** Fixpoint *)
(** A COFE defines a limit operation [lbcompl] for all limit indices. When
defining a fixpoint operator on COFEs, it is convenient
to have a limit operation which can be applied to every index, instead of just
the limit indices. We derive such an operation, called [bcompl] for
"bounded completion". *)
Section bcompl.
Context {SI : sidx} `{!Cofe A, !Inhabited A}.
Definition bcompl : BCompl A := λ n c,
match SIdx.case n with
| inl (inl Hn') => inhabitant
(* If the chain ends in a non-zero non-limit ordinal, we can just take the
last element as the limit. *)
| inl (inr (m ↾ Hm)) => c m (SIdx.lt_succ_diag_r' _ _ Hm)
| inr Hlim => lbcompl Hlim c
end.
Lemma conv_bcompl {n} (c : bchain A n) m Hm : bcompl n c ≡{m}≡ c m Hm.
Proof.
rewrite /bcompl. destruct (SIdx.case _) as [[->|[m' ->]]|?]; simpl.
- by destruct (SIdx.nlt_0_r m).
- by apply bchain_cauchy, SIdx.lt_succ_r.
- apply conv_lbcompl.
Qed.
Lemma bcompl_ne {n} (c1 c2 : bchain A n) m :
(∀ p (Hp : p < n), c1 p Hp ≡{m}≡ c2 p Hp) →
bcompl n c1 ≡{m}≡ bcompl n c2.
Proof.
intros Hc. rewrite /bcompl. destruct (SIdx.case _) as [[?|[m' ->]]|?]; simpl.
- done.
- apply Hc.
- by apply lbcompl_ne.
Qed.
Lemma limit_preserving_bcompl (P : A → Prop) n (c : bchain A n) :
n ≠ 0ᵢ ∨ P inhabitant →
LimitPreserving P →
(∀ m Hm, P (c m Hm)) → P (bcompl n c).
Proof.
intros H0 [Hcompl Hlbcompl] HP. rewrite /bcompl.
destruct (SIdx.case _) as [[?|[m' ->]]|?]; naive_solver.
Qed.
End bcompl.
(** We define the fixpoint of a contractive function [f : A → A] for an arbitrary
step-index type [SI]. To explain the fixpoint construction in the general case,
let us first recall the construction in the finite case. To find the fixpoint of
a contractive function [f], we start with some dummy element [x_0] (an arbitrary
inhabitant of [A]) and iterate [f] on it such that [x_1 := f x_0], [x_2 := f x_1],
... (i.e., [x_(n + 1) := f x_n]). We then find the fixpoint as the completion
[compl] of all of these fixpoint approximations (i.e., [x := compl (λ i, x_i)]).
In the general case with ordinals as step-indices, iterating over all natural
numbers is not enough. The way that this is solved is that COFEs provide
completion operations [lbcompl] for all limit ordinals as an additional
component of their definition. Then, conceptually, we can first define our
approximations as before for all natural numbers (i.e., [x_0, x_1, ...]) and
then we can define [x_ω := lbcompl ω (λ n, x_n)] to get the limit of all those
natural number approximations. Once we have [x_ω], we can start our iteration
again (i.e., [x_(ω + 1) := f (x_ω), ...]). We keep repeating this with all
ordinals until we have eventually defined [x_n] for all ordinals [n]. At that
point, we get a fixpoint by using the completion [x := compl (λ n, x_n)]
analogously to the natural number case.
There is one small caveat to this construction. In the definition of the
fixpoint, it is somewhat inconvenient to distinguish between the cases 0,
[Sᵢ n], and limit ordinals explicitly. We can get a very clean definition of the
fixpoint with a trick: we generalize the operation [lbcompl] that only works on
limit ordinals to work on arbitrary ordinals. This is the operation [bcompl]
defined above. *)
Section fixpoint.
Context {SI : sidx} `{!Cofe A, !Inhabited A} (f : A → A) `{!Contractive f}.
(** Getting Coq to agree with the above description of the construction of the
fixpoint takes a little work. To apply the completion operations (i.e.,
[compl] and [bcompl]), we need to know that the fixed point approximations
(i.e., ([x_n] for any [n]) and ([x_m] for any [n < m])) form a "chain".
This is not an issue in the case of natural numbers, where we can
simply proceed in three steps:
1. We first define all [x_n] by recursion on [n].
2. We prove that they form a chain, and
3. We define [x := compl (λ n, x_n)] knowing that [(λ n, x_n)] is a chain.
In the general case of ordinals, our life is harder. We want to use recursion
on ordinals to define [x_n] in terms of its predecessors [x_m] for [m < n].
However, to define [x_n], we need to use the bounded completion operation
[bcompl], which can only be applied to "bounded chains". Thus, while defining
[x_n], we need to know that all the previously defined [x_m] form a chain. In
other words, we need a property about the sequence of elements that we have
just defined. To that end, we define [bfchain], which packages a bounded chain
[bfchain_car] with the property that applying [bcompl] to [bfchain_car] gives
the fixpoint up to index [n]. *)
(** Note that [bfchain] is a private implementation detail, but Coq does not
allow us to make records [Local]. *)
Record bfchain n := {
bfchain_car :> bchain A n;
bfchain_fixpoint p :
p < n → f (bcompl n bfchain_car) ≡{p}≡ bcompl n bfchain_car;
}.
Local Lemma bfchain_chain_unique {n m} (c1 : bfchain n) (c2 : bfchain m) p :
p < n → p < m → bcompl n c1 ≡{p}≡ bcompl m c2.
Proof using Type*.
intros Hn Hm. induction (SIdx.lt_wf p) as [p _ IH].
rewrite -(bfchain_fixpoint _ c2) // -(bfchain_fixpoint _ c1) //.
apply (contractive_dist_later_dist _); split=> p' Hp'.
apply IH; [done|by etrans..].
Qed.
Local Program Definition fixpoint_bchain_go n
(rec : ∀ m, m < n → bfchain m) : bfchain n :=
{| bfchain_car := {| bchain_car m' Hm' := f (bcompl m' (rec _ Hm')) |} |}.
Next Obligation.
intros n rec m m' Hmn Hmn' Hm; simpl.
apply (contractive_dist_later_dist _); split=> p Hp.
apply bfchain_chain_unique; eauto using SIdx.lt_le_trans.
Qed.
Next Obligation.
intros n rec p Hp; simpl. rewrite (conv_bcompl _ _ Hp) /=.
apply (contractive_dist_later_dist _); split=> p' Hp'. by apply rec.
Qed.
(** We obtain a bounded fixpoint chain for every index [n] by index recursion.
In the recursive case, we construct a new chain up to [n] by taking,
for any [m < n], the limit of the [m]-th chain before applying [f] to it. *)
Local Definition fixpoint_bchain n : bfchain n :=
Fix SIdx.lt_wf bfchain fixpoint_bchain_go n.
(** We obtain a final full chain by repeating this construction for every [n],
using the bounded chains computed before. *)
Local Program Definition fixpoint_chain : chain A :=
{| chain_car n := f (bcompl n (fixpoint_bchain n)) |}.
Next Obligation.
intros n m [Hnm| ->]%SIdx.le_lteq; simpl; [|done].
apply (contractive_dist_later_dist _); split=> p Hp.
apply bfchain_chain_unique; [by etrans|done].
Qed.
Local Definition fixpoint_def : A := compl fixpoint_chain.
Local Definition fixpoint_aux : seal (@fixpoint_def).
Proof using Type. by eexists. Qed.
Definition fixpoint := fixpoint_aux.(unseal).
Local Definition fixpoint_unseal :
@fixpoint = @fixpoint_def := fixpoint_aux.(seal_eq).
(** This lemma does not work well with [rewrite]; we usually define a specific
unfolding lemma for each fixpoint and then [apply fixpoint_unfold] in the
proof of that unfolding lemma. *)
Lemma fixpoint_unfold : fixpoint ≡ f fixpoint.
Proof.
apply equiv_dist=> n. rewrite fixpoint_unseal /fixpoint_def /=.
rewrite !conv_compl /fixpoint_chain /=.
apply (contractive_dist_later_dist _); split=> p Hp.
by rewrite bfchain_fixpoint.
Qed.
End fixpoint.
Section fixpoint.
Context {SI : sidx} `{!Cofe A, !Inhabited A} (f : A → A) `{!Contractive f}.
Lemma fixpoint_unique (x : A) : x ≡ f x → x ≡ fixpoint f.
Proof.
rewrite !equiv_dist=> Hx n. induction (SIdx.lt_wf n) as [n _ IH].
rewrite Hx fixpoint_unfold. f_contractive; eauto.
Qed.
Lemma fixpoint_ne (g : A → A) `{!Contractive g} n :
(∀ z, f z ≡{n}≡ g z) → fixpoint f ≡{n}≡ fixpoint g.
Proof.
intros Hfg. induction (SIdx.lt_wf n) as [n _ IH].
rewrite (fixpoint_unfold f) (fixpoint_unfold g) -Hfg.
f_contractive. apply IH; eauto using dist_lt.
Qed.
Lemma fixpoint_proper (g : A → A) `{!Contractive g} :
(∀ x, f x ≡ g x) → fixpoint f ≡ fixpoint g.
Proof. setoid_rewrite equiv_dist; naive_solver eauto using fixpoint_ne. Qed.
Lemma fixpoint_ind (P : A → Prop) :
Proper ((≡) ==> impl) P →
(∃ x, P x) →
(∀ x, P x → P (f x)) →
LimitPreserving P →
P (fixpoint f).
Proof.
intros HP [x Hx] Hf Hlim. eapply HP.
{ eapply fixpoint_unique, (@fixpoint_unfold _ _ _ (populate x) f). }
rewrite fixpoint_unseal /fixpoint_def. apply Hlim=> m /=.
apply Hf. rewrite /fixpoint_bchain /Fix.
generalize (SIdx.lt_wf m). revert m. fix IH 2=> m acc.
apply limit_preserving_bcompl; [auto..|].
intros m' Hm'. destruct acc as [acc]; simpl. apply Hf, IH.
Qed.
End fixpoint.
(** Fixpoint of [f] when [f^k] is contractive. **)
Definition fixpointK {SI : sidx} `{!Cofe A, !Inhabited A} k (f : A → A)
`{!Contractive (Nat.iter k f)} := fixpoint (Nat.iter k f).
Section fixpointK.
Local Set Default Proof Using "Type*".
Context {SI : sidx} {A : ofe} `{!Cofe A, !Inhabited A} (f : A → A) (k : nat).
Context {f_contractive : Contractive (Nat.iter k f)} {f_ne : NonExpansive f}.
(* Note than f_ne is crucial here: there are functions f such that f^2 is contractive,
but f is not non-expansive.
Consider for example f: SPred → SPred (where SPred is "downclosed sets of natural numbers").
Define f (using informative excluded middle) as follows:
f(N) = N (where N is the set of all natural numbers)
f({0, ..., n}) = {0, ... n-1} if n is even (so n-1 is at least -1, in which case we return the empty set)
f({0, ..., n}) = {0, ..., n+2} if n is odd
In other words, if we consider elements of SPred as ordinals, then we decreaste odd finite
ordinals by 1 and increase even finite ordinals by 2.
f is not non-expansive: Consider f({0}) = ∅ and f({0,1}) = f({0,1,2,3}).
The arguments are clearly 0-equal, but the results are not.
Now consider g := f^2. We have
g(N) = N
g({0, ..., n}) = {0, ... n+1} if n is even
g({0, ..., n}) = {0, ..., n+4} if n is odd
g is contractive. All outputs contain 0, so they are all 0-equal.
Now consider two n-equal inputs. We have to show that the outputs are n+1-equal.
Either they both do not contain n in which case they have to be fully equal and
hence so are the results. Or else they both contain n, so the results will
both contain n+1, so the results are n+1-equal.
*)
Let f_proper : Proper ((≡) ==> (≡)) f := ne_proper f.
Local Existing Instance f_proper.
Lemma fixpointK_unfold : fixpointK k f ≡ f (fixpointK k f).
Proof.
symmetry. rewrite /fixpointK. apply fixpoint_unique.
by rewrite -Nat.iter_succ_r Nat.iter_succ -fixpoint_unfold.
Qed.
Lemma fixpointK_unique (x : A) : x ≡ f x → x ≡ fixpointK k f.
Proof.
intros Hf. apply fixpoint_unique. clear f_contractive.
induction k as [|k' IH]=> //=. by rewrite -IH.
Qed.
Section fixpointK_ne.
Context (g : A → A) `{g_contractive : !Contractive (Nat.iter k g)}.
Context {g_ne : NonExpansive g}.
Lemma fixpointK_ne n : (∀ z, f z ≡{n}≡ g z) → fixpointK k f ≡{n}≡ fixpointK k g.
Proof.
rewrite /fixpointK=> Hfg /=. apply fixpoint_ne=> z.
clear f_contractive g_contractive.
induction k as [|k' IH]=> //=. by rewrite IH Hfg.
Qed.
Lemma fixpointK_proper : (∀ z, f z ≡ g z) → fixpointK k f ≡ fixpointK k g.
Proof. setoid_rewrite equiv_dist; naive_solver eauto using fixpointK_ne. Qed.
End fixpointK_ne.
Lemma fixpointK_ind (P : A → Prop) :
Proper ((≡) ==> impl) P →
(∃ x, P x) → (∀ x, P x → P (f x)) →
LimitPreserving P →
P (fixpointK k f).
Proof.
intros. rewrite /fixpointK. apply fixpoint_ind; eauto.
intros; apply Nat.iter_ind; auto.
Qed.
End fixpointK.
(** Mutual fixpoints *)
Section fixpointAB.
Context {SI : sidx} {A B : ofe} `{!Cofe A, !Cofe B, !Inhabited A, !Inhabited B}.
Context (fA : A → B → A).
Context (fB : A → B → B).
Context {fA_contractive : ∀ n, Proper (dist_later n ==> dist n ==> dist n) fA}.
Context {fB_contractive : ∀ n, Proper (dist_later n ==> dist_later n ==> dist n) fB}.
Local Definition fixpoint_AB (x : A) : B := fixpoint (fB x).
Local Instance fixpoint_AB_contractive : Contractive fixpoint_AB.
Proof.
intros n x x' Hx; rewrite /fixpoint_AB.
apply fixpoint_ne=> y. by f_contractive.
Qed.
Local Definition fixpoint_AA (x : A) : A := fA x (fixpoint_AB x).
Local Instance fixpoint_AA_contractive : Contractive fixpoint_AA.
Proof using fA_contractive. solve_contractive. Qed.
Definition fixpoint_A : A := fixpoint fixpoint_AA.
Definition fixpoint_B : B := fixpoint_AB fixpoint_A.
Lemma fixpoint_A_unfold : fA fixpoint_A fixpoint_B ≡ fixpoint_A.
Proof. by rewrite {2}/fixpoint_A (fixpoint_unfold _). Qed.
Lemma fixpoint_B_unfold : fB fixpoint_A fixpoint_B ≡ fixpoint_B.
Proof. by rewrite {2}/fixpoint_B /fixpoint_AB (fixpoint_unfold _). Qed.
Local Instance: Proper ((≡) ==> (≡) ==> (≡)) fA.
Proof using fA_contractive.
apply ne_proper_2=> n x x' ? y y' ?. f_contractive; eauto using dist_lt.
Qed.
Local Instance: Proper ((≡) ==> (≡) ==> (≡)) fB.
Proof using fB_contractive.
apply ne_proper_2=> n x x' ? y y' ?. f_contractive; eauto using dist_lt.
Qed.
Lemma fixpoint_A_unique p q : fA p q ≡ p → fB p q ≡ q → p ≡ fixpoint_A.
Proof.
intros HfA HfB. rewrite -HfA. apply fixpoint_unique. rewrite /fixpoint_AA.
f_equiv=> //. apply fixpoint_unique. by rewrite HfA HfB.
Qed.
Lemma fixpoint_B_unique p q : fA p q ≡ p → fB p q ≡ q → q ≡ fixpoint_B.
Proof. intros. apply fixpoint_unique. by rewrite -fixpoint_A_unique. Qed.
End fixpointAB.
Section fixpointAB_ne.
Context {SI : sidx} {A B : ofe} `{!Cofe A, !Cofe B, !Inhabited A, !Inhabited B}.
Context (fA fA' : A → B → A).
Context (fB fB' : A → B → B).
Context `{∀ n, Proper (dist_later n ==> dist n ==> dist n) fA}.
Context `{∀ n, Proper (dist_later n ==> dist n ==> dist n) fA'}.
Context `{∀ n, Proper (dist_later n ==> dist_later n ==> dist n) fB}.
Context `{∀ n, Proper (dist_later n ==> dist_later n ==> dist n) fB'}.
Lemma fixpoint_A_ne n :
(∀ x y, fA x y ≡{n}≡ fA' x y) → (∀ x y, fB x y ≡{n}≡ fB' x y) →
fixpoint_A fA fB ≡{n}≡ fixpoint_A fA' fB'.
Proof.
intros HfA HfB. apply fixpoint_ne=> z.
rewrite /fixpoint_AA /fixpoint_AB HfA. f_equiv. by apply fixpoint_ne.
Qed.
Lemma fixpoint_B_ne n :
(∀ x y, fA x y ≡{n}≡ fA' x y) → (∀ x y, fB x y ≡{n}≡ fB' x y) →
fixpoint_B fA fB ≡{n}≡ fixpoint_B fA' fB'.
Proof.
intros HfA HfB. apply fixpoint_ne=> z. rewrite HfB. f_contractive.
apply fixpoint_A_ne; eauto using dist_lt.
Qed.
Lemma fixpoint_A_proper :
(∀ x y, fA x y ≡ fA' x y) → (∀ x y, fB x y ≡ fB' x y) →
fixpoint_A fA fB ≡ fixpoint_A fA' fB'.
Proof. setoid_rewrite equiv_dist; naive_solver eauto using fixpoint_A_ne. Qed.
Lemma fixpoint_B_proper :
(∀ x y, fA x y ≡ fA' x y) → (∀ x y, fB x y ≡ fB' x y) →
fixpoint_B fA fB ≡ fixpoint_B fA' fB'.
Proof. setoid_rewrite equiv_dist; naive_solver eauto using fixpoint_B_ne. Qed.
End fixpointAB_ne.
(** Non-expansive function space *)
Record ofe_mor {SI : sidx} (A B : ofe) : Type := OfeMor {
ofe_mor_car :> A → B;
ofe_mor_ne : NonExpansive ofe_mor_car
}.
Global Arguments OfeMor {_ _ _} _ {_}.
Add Printing Constructor ofe_mor.
Global Existing Instance ofe_mor_ne.
Notation "'λne' x .. y , t" :=
(@OfeMor _ _ _ (λ x, .. (@OfeMor _ _ _ (λ y, t) _) ..) _)
(at level 200, x binder, y binder, right associativity).
Section ofe_mor.
Context {SI : sidx} {A B : ofe}.
Global Instance ofe_mor_proper (f : ofe_mor A B) : Proper ((≡) ==> (≡)) f.
Proof. apply ne_proper, ofe_mor_ne. Qed.
Local Instance ofe_mor_equiv : Equiv (ofe_mor A B) := λ f g, ∀ x, f x ≡ g x.
Local Instance ofe_mor_dist : Dist (ofe_mor A B) := λ n f g, ∀ x, f x ≡{n}≡ g x.
Definition ofe_mor_ofe_mixin : OfeMixin (ofe_mor A B).
Proof.
split.
- intros f g; split; [intros Hfg n k; apply equiv_dist, Hfg|].
intros Hfg k; apply equiv_dist=> n; apply Hfg.
- intros n; split.
+ by intros f x.
+ by intros f g ? x.
+ by intros f g h ?? x; trans (g x).
- intros n m f g ? x ?; eauto using dist_le.
Qed.
Canonical Structure ofe_morO := Ofe (ofe_mor A B) ofe_mor_ofe_mixin.
Program Definition ofe_mor_chain (c : chain ofe_morO)
(x : A) : chain B := {| chain_car n := c n x |}.
Next Obligation. intros c x n i ?. by apply (chain_cauchy c). Qed.
Program Definition ofe_mor_compl `{!Cofe B} : Compl ofe_morO := λ c,
{| ofe_mor_car x := compl (ofe_mor_chain c x) |}.
Next Obligation.
intros ? c n x y Hx. by rewrite (conv_compl n (ofe_mor_chain c x))
(conv_compl n (ofe_mor_chain c y)) /= Hx.
Qed.
Program Definition ofe_mor_bchain {n}
(c : bchain ofe_morO n) (x : A) : bchain B n :=
{| bchain_car n Hn := c n Hn x |}.
Next Obligation. intros n c x m Hm i ??. by apply (bchain_cauchy n c). Qed.
Program Definition ofe_mor_lbcompl `{!Cofe B} : LBCompl ofe_morO := λ n Hn c,
{| ofe_mor_car x := lbcompl Hn (ofe_mor_bchain c x) |}.
Next Obligation.
intros ? n Hn c m x y Hx. apply lbcompl_ne=> p ?.
rewrite /ofe_mor_bchain /=. by rewrite Hx.
Qed.
Global Program Instance ofe_mor_cofe `{!Cofe B} : Cofe ofe_morO :=
{| compl := ofe_mor_compl; lbcompl := ofe_mor_lbcompl |}.
Next Obligation. intros ? n c x; simpl. by rewrite conv_compl. Qed.
Next Obligation.
intros ? n Hn m Hm H x; simpl. rewrite (conv_lbcompl Hn) //=.
Qed.
Next Obligation.
intros ? n Hn c1 c2 m Hc x; simpl. apply lbcompl_ne=> p Hp. apply Hc.
Qed.
Global Instance ofe_mor_car_ne : NonExpansive2 (@ofe_mor_car SI A B).
Proof. intros n f g Hfg x y Hx; rewrite Hx; apply Hfg. Qed.
Global Instance ofe_mor_car_proper :
Proper ((≡) ==> (≡) ==> (≡)) (@ofe_mor_car SI A B) := ne_proper_2 _.
Lemma ofe_mor_ext (f g : ofe_mor A B) : f ≡ g ↔ ∀ x, f x ≡ g x.
Proof. done. Qed.
End ofe_mor.
Global Arguments ofe_morO {_} _ _.
Notation "A -n> B" :=
(ofe_morO A B) (at level 99, B at level 200, right associativity).
Global Instance ofe_mor_inhabited {SI : sidx} {A B : ofe} `{Inhabited B} :
Inhabited (A -n> B) := populate (λne _, inhabitant).
(** Identity and composition and constant function *)