Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yixuan Chen
Iris
Commits
9926920d
Commit
9926920d
authored
1 year ago
by
Benjamin Peters
Committed by
Robbert Krebbers
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
add lemmas for na_own p ∅
parent
1bba4893
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+7
-0
7 additions, 0 deletions
CHANGELOG.md
iris/base_logic/lib/na_invariants.v
+6
-0
6 additions, 0 deletions
iris/base_logic/lib/na_invariants.v
with
13 additions
and
0 deletions
CHANGELOG.md
+
7
−
0
View file @
9926920d
...
...
@@ -3,6 +3,13 @@ way the logic is used on paper. We also document changes in the Coq
development; every API-breaking change should be listed, but not every new
lemma.
## Iris master
**Changes in `base_logic`:**
*
Add lemma
`na_own_empty`
and persistence instance for
`na_own p ∅`
for
non-atomic invariant tokens. (by Benjamin Peters)
## Iris 4.2.0 (2024-04-12)
The highlights of this release are:
...
...
This diff is collapsed.
Click to expand it.
iris/base_logic/lib/na_invariants.v
+
6
−
0
View file @
9926920d
...
...
@@ -45,6 +45,9 @@ Section proofs.
Global
Instance
na_inv_persistent
p
N
P
:
Persistent
(
na_inv
p
N
P
)
.
Proof
.
rewrite
/
na_inv
;
apply
_
.
Qed
.
Global
Instance
na_own_empty_persistent
p
:
Persistent
(
na_own
p
∅
)
.
Proof
.
rewrite
/
na_own
;
apply
_
.
Qed
.
Lemma
na_inv_iff
p
N
P
Q
:
na_inv
p
N
P
-∗
▷
□
(
P
↔
Q
)
-∗
na_inv
p
N
Q
.
Proof
.
rewrite
/
na_inv
.
iIntros
"(%i & % & HI) #HPQ"
.
...
...
@@ -109,6 +112,9 @@ Section proofs.
-
iDestruct
(
na_own_disjoint
with
"Htoki Htoki2"
)
as
%
?
.
set_solver
.
Qed
.
Lemma
na_own_empty
p
:
⊢
|
==>
na_own
p
∅.
Proof
.
apply
:
own_unit
.
Qed
.
Global
Instance
into_inv_na
p
N
P
:
IntoInv
(
na_inv
p
N
P
)
N
:=
{}
.
Global
Instance
into_acc_na
p
F
E
N
P
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment