Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Paolo G. Giarrusso
iris
Commits
d6875e7d
Commit
d6875e7d
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Prove fact about exclusive and included.
parent
9f3a376e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
algebra/cmra.v
+4
-0
4 additions, 0 deletions
algebra/cmra.v
with
4 additions
and
0 deletions
algebra/cmra.v
+
4
−
0
View file @
d6875e7d
...
...
@@ -344,6 +344,10 @@ Lemma exclusive_r x `{!Exclusive x} y : ✓ (y ⋅ x) → False.
Proof
.
rewrite
comm
.
by
apply
exclusive_l
.
Qed
.
Lemma
exclusiveN_opM
n
x
`{
!
Exclusive
x
}
my
:
✓
{
n
}
(
x
⋅
?
my
)
→
my
=
None
.
Proof
.
destruct
my
as
[
y
|]
.
move
=>
/
(
exclusiveN_l
_
x
)
[]
.
done
.
Qed
.
Lemma
exclusive_includedN
n
x
`{
!
Exclusive
x
}
y
:
x
≼
{
n
}
y
→
✓
{
n
}
y
→
False
.
Proof
.
intros
[?
->
]
.
by
apply
exclusiveN_l
.
Qed
.
Lemma
exclusive_included
x
`{
!
Exclusive
x
}
y
:
x
≼
y
→
✓
y
→
False
.
Proof
.
intros
[?
->
]
.
by
apply
exclusive_l
.
Qed
.
(** ** Order *)
Lemma
cmra_included_includedN
n
x
y
:
x
≼
y
→
x
≼
{
n
}
y
.
...
...
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