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
db714636
Commit
db714636
authored
6 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
More generic `Fresh` instance for `gset`.
parent
c36246fc
No related branches found
No related tags found
No related merge requests found
Pipeline
#14437
passed
6 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/gmap.v
+5
-13
5 additions, 13 deletions
theories/gmap.v
theories/infinite.v
+7
-2
7 additions, 2 deletions
theories/infinite.v
with
12 additions
and
15 deletions
theories/gmap.v
+
5
−
13
View file @
db714636
...
...
@@ -2,7 +2,7 @@
(* This file is distributed under the terms of the BSD license. *)
(** This file implements finite maps and finite sets with keys of any countable
type. The implementation is based on [Pmap]s, radix-2 search trees. *)
From
stdpp
Require
Export
countable
fin_maps
fin_map_dom
.
From
stdpp
Require
Export
countable
infinite
fin_maps
fin_map_dom
.
From
stdpp
Require
Import
pmap
mapset
set
.
Set
Default
Proof
Using
"Type"
.
...
...
@@ -265,15 +265,7 @@ Proof.
Qed
.
(** * Fresh elements *)
(* This is pretty ad-hoc and just for the case of [gset positive]. We need a
notion of countable non-finite types to generalize this. *)
Instance
gset_positive_fresh
:
Fresh
positive
(
gset
positive
)
:=
λ
X
,
let
'
Mapset
(
GMap
m
_)
:=
X
in
fresh
(
dom
Pset
m
)
.
Instance
gset_positive_fresh_spec
:
FreshSpec
positive
(
gset
positive
)
.
Proof
.
split
.
-
apply
_
.
-
by
intros
X
Y
;
rewrite
<-
elem_of_equiv_L
;
intros
->
.
-
intros
[[
m
Hm
]];
unfold
fresh
;
simpl
.
by
intros
?;
apply
(
is_fresh
(
dom
Pset
m
)),
elem_of_dom_2
with
()
.
Qed
.
Instance
gset_fresh
`{
Countable
A
,
Infinite
A
}
:
Fresh
A
(
gset
A
)
:=
fresh_generic
.
Instance
gset_fresh_spec
`{
Countable
A
,
Infinite
A
}
:
FreshSpec
A
(
gset
A
)
:=
fresh_generic_spec
.
This diff is collapsed.
Click to expand it.
theories/infinite.v
+
7
−
2
View file @
db714636
...
...
@@ -27,7 +27,12 @@ Proof.
Qed
.
(** * Fresh elements *)
Section
Fresh
.
(** We do not make [fresh_generic] an instance because it leads to overlap. For
various set implementations, e.g. [Pset] and [natset], we have an efficient
implementation of [Fresh], which should always be used. Only for specific set
implementations like [gset], which are not meant to be computationally
efficient in the first place, we make [fresh_generic] an instance. *)
Section
fresh_generic
.
Context
`{
FinCollection
A
C
,
Infinite
A
,
!
RelDecision
(
∈@
{
C
})}
.
Definition
fresh_generic_body
(
s
:
C
)
(
rec
:
∀
s'
,
s'
⊂
s
→
nat
→
A
)
(
n
:
nat
)
:
A
:=
...
...
@@ -84,4 +89,4 @@ Section Fresh.
destruct
(
fresh_generic_fixpoint_spec
X
0
)
as
(
m
&
_
&
->
&
HnotinX
&
HbelowinX
);
auto
.
Qed
.
End
F
resh
.
End
f
resh
_generic
.
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