diff --git a/program_logic/auth.v b/program_logic/auth.v index c929c8fbee2b768183fc1b714d2d57bbb2eeefc1..54e802a236657e22f9f7e4b2023a83af1d6912fb 100644 --- a/program_logic/auth.v +++ b/program_logic/auth.v @@ -8,6 +8,8 @@ Class AuthInG Λ Σ (i : gid) (A : cmraT) `{Empty A} := { auth_timeless (a : A) :> Timeless a; }. +(* TODO: Once we switched to RAs, it is no longer necessary to remember that a is + constantly valid. *) Definition auth_inv {Λ Σ A} (i : gid) `{AuthInG Λ Σ i A} (γ : gname) (φ : A → iPropG Λ Σ) : iPropG Λ Σ := (∃ a, (■✓a ∧ own i γ (◠a)) ★ φ a)%I. Definition auth_own {Λ Σ A} (i : gid) `{AuthInG Λ Σ i A}