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
Commits
6b885cdd
Commit
6b885cdd
authored
2 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
changelog and FIXME
parent
3e630f05
No related branches found
No related tags found
1 merge request
!376
make dom domain type paremeter (D) implicit
Pipeline
#65850
passed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+7
-0
7 additions, 0 deletions
CHANGELOG.md
theories/fin_map_dom.v
+1
-0
1 addition, 0 deletions
theories/fin_map_dom.v
with
8 additions
and
0 deletions
CHANGELOG.md
+
7
−
0
View file @
6b885cdd
...
@@ -7,6 +7,13 @@ Coq 8.11 is no longer supported.
...
@@ -7,6 +7,13 @@ Coq 8.11 is no longer supported.
-
Make sure that
`gset`
and
`mapset`
do not bump the universe.
-
Make sure that
`gset`
and
`mapset`
do not bump the universe.
-
Rewrite
`tele_arg`
to make it not bump universes. (by Gregory Malecha, BedRock Systems)
-
Rewrite
`tele_arg`
to make it not bump universes. (by Gregory Malecha, BedRock Systems)
-
Change
`dom D M`
(where
`D`
is the domain type) to
`dom M`
; the domain type is
now inferred automatically. To make this possible, getting the domain of a
`gmap`
as a
`coGset`
and of a
`Pmap`
as a
`coPset`
is no longer supported. Use
`gset_to_coGset`
/
`Pset_to_coPset`
instead.
When combining
`dom`
with
`≡`
, this can run into an old issue (due to a Coq
issue,
`Equiv`
does not the desired
`Hint Mode !`
), which can make it
necessary to annotate the set type at the
`≡`
via
`≡@{D}`
.
## std++ 1.7.0 (2022-01-22)
## std++ 1.7.0 (2022-01-22)
...
...
This diff is collapsed.
Click to expand it.
theories/fin_map_dom.v
+
1
−
0
View file @
6b885cdd
...
@@ -66,6 +66,7 @@ Lemma dom_filter_subseteq {A} (P : K * A → Prop) `{!∀ x, Decision (P x)} (m
...
@@ -66,6 +66,7 @@ Lemma dom_filter_subseteq {A} (P : K * A → Prop) `{!∀ x, Decision (P x)} (m
dom
(
filter
P
m
)
⊆
dom
m
.
dom
(
filter
P
m
)
⊆
dom
m
.
Proof
.
apply
subseteq_dom
,
map_filter_subseteq
.
Qed
.
Proof
.
apply
subseteq_dom
,
map_filter_subseteq
.
Qed
.
(* FIXME: Once [Equiv] has [Mode !], we can remove all these [D] type annotations at [≡]. *)
Lemma
dom_empty
{
A
}
:
dom
(
@
empty
(
M
A
)
_)
≡@
{
D
}
∅.
Lemma
dom_empty
{
A
}
:
dom
(
@
empty
(
M
A
)
_)
≡@
{
D
}
∅.
Proof
.
Proof
.
intros
x
.
rewrite
elem_of_dom
,
lookup_empty
,
<-
not_eq_None_Some
.
set_solver
.
intros
x
.
rewrite
elem_of_dom
,
lookup_empty
,
<-
not_eq_None_Some
.
set_solver
.
...
...
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