Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coq-stdpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Monitor
Incidents
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
David Swasey
coq-stdpp
Commits
e0eef94a
Commit
e0eef94a
authored
5 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Fix compilation after !112 broke it.
parent
f84c69f6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/coPset.v
+3
-2
3 additions, 2 deletions
theories/coPset.v
with
3 additions
and
2 deletions
theories/coPset.v
+
3
−
2
View file @
e0eef94a
...
...
@@ -159,8 +159,6 @@ Instance coPset_singleton : Singleton positive coPset := λ p,
Instance
coPset_elem_of
:
ElemOf
positive
coPset
:=
λ
p
X
,
e_of
p
(
`
X
)
.
Instance
coPset_empty
:
Empty
coPset
:=
coPLeaf
false
↾
I
.
Instance
coPset_top
:
Top
coPset
:=
coPLeaf
true
↾
I
.
(** Iris and specifically [solve_ndisj] heavily rely on this hint. *)
Hint
Resolve
(
top_subseteq
(
A
:=
positive
)
(
C
:=
coPset
))
:
core
.
Instance
coPset_union
:
Union
coPset
:=
λ
X
Y
,
let
(
t1
,
Ht1
)
:=
X
in
let
(
t2
,
Ht2
)
:=
Y
in
(
t1
∪
t2
)
↾
coPset_union_wf
_
_
Ht1
Ht2
.
...
...
@@ -186,6 +184,9 @@ Proof.
-
done
.
Qed
.
(** Iris and specifically [solve_ndisj] heavily rely on this hint. *)
Hint
Resolve
(
top_subseteq
(
A
:=
positive
)
(
C
:=
coPset
))
:
core
.
Instance
coPset_leibniz
:
LeibnizEquiv
coPset
.
Proof
.
intros
X
Y
;
rewrite
elem_of_equiv
;
intros
HXY
.
...
...
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