Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
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
Model registry
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
Iris
stdpp
Merge requests
!9
Add more lemmas for gmap uncurry
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add more lemmas for gmap uncurry
haidang/stdpp:gmap_uncurry
into
master
Overview
9
Commits
1
Pipelines
0
Changes
1
Merged
Hai Dang
requested to merge
haidang/stdpp:gmap_uncurry
into
master
7 years ago
Overview
9
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
66ddc4cd
1 commit,
7 years ago
1 file
+
31
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
theories/gmap.v
+
31
−
0
Options
@@ -186,6 +186,37 @@ Section curry_uncurry.
Proof
.
apply
map_eq
;
intros
[
i
j
]
.
by
rewrite
lookup_gmap_curry
,
lookup_gmap_uncurry
.
Qed
.
Lemma
gmap_uncurry_nonempty
(
m
:
gmap
(
K1
*
K2
)
A
):
∀
i
x
,
gmap_uncurry
m
!!
i
=
Some
x
→
x
≠
∅.
Proof
.
apply
(
map_fold_ind
(
λ
mr
m
,
∀
i
x
,
mr
!!
i
=
Some
x
→
x
≠
∅
));
[
done
|]
.
intros
[
i
j
]
x
m12
mr
Hij
IH
i'
x'
.
destruct
(
decide
(
i
=
i'
))
as
[
->
|];
[
rewrite
lookup_partial_alter
|
rewrite
lookup_partial_alter_ne
;
[
apply
IH
|
done
]]
.
inversion
1
.
apply
insert_non_empty
.
Qed
.
Lemma
gmap_uncurry_curry_nonempty
(
m
:
gmap
K1
(
gmap
K2
A
))
(
NE
:
∀
i
x
,
m
!!
i
=
Some
x
→
x
≠
∅
)
:
gmap_uncurry
(
gmap_curry
m
)
=
m
.
Proof
.
apply
map_eq
;
intros
i
.
destruct
(
m
!!
i
)
as
[
x'
|]
eqn
:
Eqx'
.
-
destruct
(
gmap_uncurry
(
gmap_curry
m
)
!!
i
)
as
[
x2
|]
eqn
:
Eq2
.
+
f_equal
.
apply
map_eq
.
intros
j
.
assert
(
Eq3
:
x'
!!
j
=
(
m
!!
i
:
option
(
gmap
_
_))
≫=
(
!!
j
))
.
{
by
rewrite
Eqx'
.
}
assert
(
Eq4
:
x2
!!
j
=
(
gmap_uncurry
(
gmap_curry
m
)
!!
i
:
option
(
gmap
_
_))
≫=
(
!!
j
))
.
{
by
rewrite
Eq2
.
}
by
rewrite
Eq3
,
<-
lookup_gmap_curry
,
Eq4
,
lookup_gmap_uncurry
.
+
revert
Eq2
.
rewrite
lookup_gmap_uncurry_None
.
setoid_rewrite
lookup_gmap_curry
.
rewrite
Eqx'
.
intros
Eq2
.
exfalso
.
apply
(
NE
_
_
Eqx'
),
map_eq
,
Eq2
.
-
apply
lookup_gmap_uncurry_None
.
intros
j
.
by
rewrite
lookup_gmap_curry
,
Eqx'
.
Qed
.
End
curry_uncurry
.
(** * Finite sets *)
Loading