Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tej Chajed
iris
Commits
f70294b1
Commit
f70294b1
authored
May 30, 2016
by
Robbert Krebbers
Browse files
Prove equivalent more useful def of valid on auth A when A is discrete.
parent
6b5909ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
algebra/auth.v
View file @
f70294b1
...
...
@@ -100,6 +100,17 @@ Proof. by destruct x as [[[]|]]. Qed.
Lemma
own_validN
n
(
x
:
auth
A
)
:
✓
{
n
}
x
→
✓
{
n
}
own
x
.
Proof
.
destruct
x
as
[[[]|]]
;
naive_solver
eauto
using
cmra_validN_includedN
.
Qed
.
Lemma
auth_valid_discrete
`
{
CMRADiscrete
A
}
x
:
✓
x
↔
match
authoritative
x
with
|
Excl'
a
=>
own
x
≼
a
∧
✓
a
|
None
=>
✓
own
x
|
ExclBot'
=>
False
end
.
Proof
.
destruct
x
as
[[[?|]|]
?]
;
simpl
;
try
done
.
setoid_rewrite
<-
cmra_discrete_included_iff
;
naive_solver
eauto
using
0
.
Qed
.
Lemma
auth_cmra_mixin
:
CMRAMixin
(
auth
A
).
Proof
.
apply
cmra_total_mixin
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment