- Nov 02, 2020
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
That is, `big_sepL2_intuitionistically_forall`, `big_sepL2_forall`, and `big_sepM2_intuitionistically_forall`.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
That is, `big_sepMS_intuitionistically_forall`, `big_sepMS_forall`, `big_sepMS_impl`, and `big_sepMS_dup`.
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Oct 31, 2020
-
-
Ralf Jung authored
Fix typos See merge request iris/iris!559
-
-
- Oct 30, 2020
-
-
Ralf Jung authored
-
Robbert Krebbers authored
-
- Oct 29, 2020
-
-
Ralf Jung authored
-
Robbert Krebbers authored
Fix typos See merge request !557
-
-
- Oct 27, 2020
-
-
Ralf Jung authored
-
Robbert Krebbers authored
Add library for monotonic nat ghost state Closes #327 See merge request iris/iris!547
-
Implemented as an algebra for rules about `auth max_natUR` and a logic-level wrapper for the auth element (a nat) and fragment (a persistent lower-bound). Fixes #327.
-
- Oct 22, 2020
- Oct 21, 2020
-
-
Ralf Jung authored
Add swap lemmas for exist and forall See merge request iris/iris!552
-
Ralf Jung authored
-
Robbert Krebbers authored
Add lemmas for validity of `●{_} _ ⋅ ●{_} _` for both view and auth. See merge request iris/iris!551
-
Robbert Krebbers authored
-
Robbert Krebbers authored
This also required changing the order a bit. ```coq Lemma gmap_view_auth_frac_op_valid q1 q2 m1 m2 : ✓ (gmap_view_auth q1 m1 ⋅ gmap_view_auth q2 m2)
↔️ ✓ (q1 + q2)%Qp ∧ m1 ≡ m2. Lemma gmap_view_auth_op_valid m1 m2 : ✓ (gmap_view_auth 1 m1 ⋅ gmap_view_auth 1 m2)↔️ False. ``` -
Robbert Krebbers authored
The diff might be hard to read, because I had to change the order. The following lemmas have been added: ```coq Lemma view_auth_frac_op_validN n q1 q2 a1 a2 : ✓{n} (●V{q1} a1 ⋅ ●V{q2} a2)
↔️ ✓ (q1 + q2)%Qp ∧ a1 ≡{n}≡ a2 ∧ rel n a1 ε. Lemma view_auth_op_validN n a1 a2 : ✓{n} (●V a1 ⋅ ●V a2)↔️ False. Lemma view_auth_frac_op_valid q1 q2 a1 a2 : ✓ (●V{q1} a1 ⋅ ●V{q2} a2)↔️ ✓ (q1 + q2)%Qp ∧ a1 ≡ a2 ∧ ∀ n, rel n a1 ε. Lemma view_auth_op_valid a1 a2 : ✓ (●V a1 ⋅ ●V a2)↔️ False. Lemma auth_auth_frac_op_validN n q1 q2 a1 a2 : ✓{n} (●{q1} a1 ⋅ ●{q2} a2)↔️ ✓ (q1 + q2)%Qp ∧ a1 ≡{n}≡ a2 ∧ ✓{n} a1. Lemma auth_auth_op_validN n a1 a2 : ✓{n} (● a1 ⋅ ● a2)↔️ False. Lemma auth_auth_frac_op_valid q1 q2 a1 a2 : ✓ (●{q1} a1 ⋅ ●{q2} a2)↔️ ✓ (q1 + q2)%Qp ∧ a1 ≡ a2 ∧ ✓ a1. Lemma auth_auth_op_valid a1 a2 : ✓ (● a1 ⋅ ● a2)↔️ False. ``` -
Robbert Krebbers authored
add gmap_view type notation (mirroring auth) See merge request iris/iris!544
-
Ralf Jung authored
gmap_view_auth: add fraction Closes #356 See merge request iris/iris!548
-
Ralf Jung authored
-
Ralf Jung authored
-
Ralf Jung authored
-
Robbert Krebbers authored
-
- Oct 20, 2020
-
-
Ralf Jung authored
Strengthen validy of fragment of view camera See merge request iris/iris!546
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Ralf Jung authored
remove algebra/ dependency on base_logic/ Closes #355 See merge request iris/iris!549
-
Ralf Jung authored
-