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
24d4cf52
Commit
24d4cf52
authored
4 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
various algebra lemmas
parent
e6f1e4a9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
theories/algebra/csum.v
+22
-0
22 additions, 0 deletions
theories/algebra/csum.v
theories/algebra/gmap.v
+12
-2
12 additions, 2 deletions
theories/algebra/gmap.v
theories/algebra/ofe.v
+7
-0
7 additions, 0 deletions
theories/algebra/ofe.v
with
41 additions
and
2 deletions
theories/algebra/csum.v
+
22
−
0
View file @
24d4cf52
...
...
@@ -299,6 +299,28 @@ Proof. intros ? [] ? EQ; inversion_clear EQ. by eapply id_free0_r. Qed.
Global
Instance
Cinr_id_free
b
:
IdFree
b
→
IdFree
(
Cinr
b
)
.
Proof
.
intros
?
[]
?
EQ
;
inversion_clear
EQ
.
by
eapply
id_free0_r
.
Qed
.
(** Interaction with [option] *)
Lemma
Some_csum_includedN
x
y
n
:
Some
x
≼
{
n
}
Some
y
↔
y
=
CsumBot
∨
(
∃
a
a'
,
x
=
Cinl
a
∧
y
=
Cinl
a'
∧
Some
a
≼
{
n
}
Some
a'
)
∨
(
∃
b
b'
,
x
=
Cinr
b
∧
y
=
Cinr
b'
∧
Some
b
≼
{
n
}
Some
b'
)
.
Proof
.
repeat
setoid_rewrite
Some_includedN
.
rewrite
csum_includedN
.
split
.
-
intros
[
Hxy
|?];
[
inversion
Hxy
|];
naive_solver
.
-
naive_solver
by
f_equiv
.
Qed
.
Lemma
Some_csum_included
x
y
:
Some
x
≼
Some
y
↔
y
=
CsumBot
∨
(
∃
a
a'
,
x
=
Cinl
a
∧
y
=
Cinl
a'
∧
Some
a
≼
Some
a'
)
∨
(
∃
b
b'
,
x
=
Cinr
b
∧
y
=
Cinr
b'
∧
Some
b
≼
Some
b'
)
.
Proof
.
repeat
setoid_rewrite
Some_included
.
rewrite
csum_included
.
split
.
-
intros
[
Hxy
|?];
[
inversion
Hxy
|];
naive_solver
.
-
naive_solver
by
f_equiv
.
Qed
.
(** Internalized properties *)
Lemma
csum_validI
{
M
}
(
x
:
csum
A
B
)
:
✓
x
⊣⊢@
{
uPredI
M
}
match
x
with
...
...
This diff is collapsed.
Click to expand it.
theories/algebra/gmap.v
+
12
−
2
View file @
24d4cf52
...
...
@@ -537,13 +537,23 @@ Proof.
-
by
rewrite
lookup_insert_ne
//
!
lookup_op
lookup_insert_ne
.
Qed
.
Lemma
singleton_local_update_any
m
i
y
x'
y'
:
(
∀
x
,
m
!!
i
=
Some
x
→
(
x
,
y
)
~l
~>
(
x'
,
y'
))
→
(
m
,
{[
i
:=
y
]})
~l
~>
(
<
[
i
:=
x'
]
>
m
,
{[
i
:=
y'
]})
.
Proof
.
intros
.
rewrite
/
singletonM
/
map_singleton
-
(
insert_insert
∅
i
y'
y
)
.
apply
local_update_total_valid0
=>_
_
/
singleton_includedN_l
[
x0
[
/
dist_Some_inv_r
Hlk0
_]]
.
edestruct
Hlk0
as
[
x
[
Hlk
_]];
[
done
..|]
.
eapply
insert_local_update
;
[|
eapply
lookup_insert
|];
eauto
.
Qed
.
Lemma
singleton_local_update
m
i
x
y
x'
y'
:
m
!!
i
=
Some
x
→
(
x
,
y
)
~l
~>
(
x'
,
y'
)
→
(
m
,
{[
i
:=
y
]})
~l
~>
(
<
[
i
:=
x'
]
>
m
,
{[
i
:=
y'
]})
.
Proof
.
intros
.
rewrite
/
singletonM
/
map_singleton
-
(
insert_insert
∅
i
y'
y
)
.
by
eapply
insert_local_update
;
[|
eapply
lookup_insert
|]
.
intros
Hmi
?
.
apply
singleton_local_update_any
.
intros
x2
.
rewrite
Hmi
=>[
=<-
]
.
done
.
Qed
.
Lemma
delete_local_update
m1
m2
i
x
`{
!
Exclusive
x
}
:
...
...
This diff is collapsed.
Click to expand it.
theories/algebra/ofe.v
+
7
−
0
View file @
24d4cf52
...
...
@@ -1041,6 +1041,13 @@ Instance option_mjoin_ne {A : ofeT} n:
Proper
(
dist
n
==>
dist
n
)
(
@
mjoin
option
_
A
)
.
Proof
.
destruct
1
as
[??
[]|];
simpl
;
by
constructor
.
Qed
.
Lemma
fmap_Some_dist
{
A
B
:
ofeT
}
(
f
:
A
→
B
)
(
mx
:
option
A
)
(
y
:
B
)
n
:
f
<$>
mx
≡
{
n
}
≡
Some
y
↔
∃
x
:
A
,
mx
=
Some
x
∧
y
≡
{
n
}
≡
f
x
.
Proof
.
split
;
[|
by
intros
(
x
&
->
&
->
)]
.
intros
(?
&
?
%
fmap_Some
&
?)
%
dist_Some_inv_r'
;
naive_solver
.
Qed
.
Definition
optionO_map
{
A
B
}
(
f
:
A
-
n
>
B
)
:
optionO
A
-
n
>
optionO
B
:=
OfeMor
(
fmap
f
:
optionO
A
→
optionO
B
)
.
Instance
optionO_map_ne
A
B
:
NonExpansive
(
@
optionO_map
A
B
)
.
...
...
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