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
!398
Flip direction of `map_disjoint_fmap`.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Flip direction of `map_disjoint_fmap`.
robbert/map_disjoint_fmap
into
master
Overview
1
Commits
2
Pipelines
3
Changes
1
Merged
Robbert Krebbers
requested to merge
robbert/map_disjoint_fmap
into
master
2 years ago
Overview
1
Commits
2
Pipelines
3
Changes
1
Expand
The old way was inconsistent with other lemmas.
0
0
Merge request reports
Viewing commit
9198e66b
Prev
Next
Show latest version
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
9198e66b
CHANGELOG.
· 9198e66b
Robbert Krebbers
authored
2 years ago
theories/fin_maps.v
+
1
−
1
Options
@@ -2054,7 +2054,7 @@ Proof.
Qed
.
Lemma
map_disjoint_fmap
{
A
B
}
(
f1
f2
:
A
→
B
)
(
m1
m2
:
M
A
)
:
m1
##
ₘ
m2
↔
f1
<$>
m1
##
ₘ
f2
<$>
m2
.
f1
<$>
m1
##
ₘ
f2
<$>
m2
↔
m1
##
ₘ
m2
.
Proof
.
rewrite
!
map_disjoint_spec
.
setoid_rewrite
lookup_fmap_Some
.
naive_solver
.
Qed
.
Loading