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
c25d0657
Commit
c25d0657
authored
2 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Test.
parent
ab1c4c33
No related branches found
No related tags found
1 merge request
!429
Make sure that `naive_solver` does not create any new evars on leafs.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/sets.v
+5
-1
5 additions, 1 deletion
tests/sets.v
with
5 additions
and
1 deletion
tests/sets.v
+
5
−
1
View file @
c25d0657
From
stdpp
Require
Import
sets
.
From
stdpp
Require
Import
sets
gmap
.
Lemma
foo
`{
Set_
A
C
}
(
x
:
A
)
(
X
Y
:
C
)
:
x
∈
X
∩
Y
→
x
∈
X
.
Proof
.
intros
Hx
.
set_unfold
in
Hx
.
tauto
.
Qed
.
...
...
@@ -7,3 +7,7 @@ Proof. intros Hx. set_unfold in Hx. tauto. Qed.
Lemma
elem_of_list_bind_again
{
A
B
}
(
x
:
B
)
(
l
:
list
A
)
f
:
x
∈
l
≫=
f
↔
∃
y
,
x
∈
f
y
∧
y
∈
l
.
Proof
.
set_solver
.
Qed
.
(** Should not leave any evars, see issue #163 *)
Goal
{[
0
]}
∪
dom
(
∅
:
gmap
nat
nat
)
≠
∅.
Proof
.
set_solver
.
Qed
.
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