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
b217790f
Commit
b217790f
authored
3 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
handle more goals in solve_ndisj
parent
715cb884
No related branches found
No related tags found
1 merge request
!294
handle more goals in solve_ndisj
Pipeline
#50631
passed
3 years ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
tests/solve_ndisj.v
+16
-5
16 additions, 5 deletions
tests/solve_ndisj.v
theories/namespaces.v
+11
-0
11 additions, 0 deletions
theories/namespaces.v
with
29 additions
and
5 deletions
CHANGELOG.md
+
2
−
0
View file @
b217790f
...
...
@@ -111,6 +111,8 @@ API-breaking change is listed.
-
Make
`done`
work on goals of the form
`is_Some`
.
-
Add
`mk_evar`
tactic to generate evars (intended as a more useful replacement
for Coq's
`evar`
tactic).
-
Make
`solve_ndisj`
able to solve more goals of the form
`_ ⊆ ⊤ ∖ _`
,
`_ ∖ _ ## _`
,
`_ ## _ ∖ _`
, as well as
`_ ## ∅`
and
`∅ ## _`
.
The following
`sed`
script should perform most of the renaming
(on macOS, replace
`sed`
by
`gsed`
, installed via e.g.
`brew install gnu-sed`
).
...
...
This diff is collapsed.
Click to expand it.
tests/solve_ndisj.v
+
16
−
5
View file @
b217790f
From
stdpp
Require
Import
namespaces
strings
.
Lemma
test1
(
N1
N2
:
namespace
)
:
Section
tests
.
Implicit
Types
(
N
:
namespace
)
(
E
:
coPset
)
.
Lemma
test1
N1
N2
:
N1
##
N2
→
↑
N1
⊆@
{
coPset
}
⊤
∖
↑
N2
.
Proof
.
solve_ndisj
.
Qed
.
Lemma
test2
(
N1
N2
:
namespace
)
:
Lemma
test2
N1
N2
:
N1
##
N2
→
↑
N1
.
@
"x"
⊆@
{
coPset
}
⊤
∖
↑
N1
.
@
"y"
∖
↑
N2
.
Proof
.
solve_ndisj
.
Qed
.
Lemma
test3
(
N
:
namespace
)
:
Lemma
test3
N
:
⊤
∖
↑
N
⊆@
{
coPset
}
⊤
∖
↑
N
.
@
"x"
.
Proof
.
solve_ndisj
.
Qed
.
Lemma
test4
(
N
:
namespace
)
:
Lemma
test4
N
:
⊤
∖
↑
N
⊆@
{
coPset
}
⊤
∖
↑
N
.
@
"x"
∖
↑
N
.
@
"y"
.
Proof
.
solve_ndisj
.
Qed
.
Lemma
test5
(
N1
N2
:
namespace
)
:
Lemma
test5
N1
N2
:
⊤
∖
↑
N1
∖
↑
N2
⊆@
{
coPset
}
⊤
∖
↑
N1
.
@
"x"
∖
↑
N2
∖
↑
N1
.
@
"y"
.
Proof
.
solve_ndisj
.
Qed
.
Lemma
test6
E
N
:
↑
N
⊆
E
→
↑
N
⊆
⊤
∖
(
E
∖
↑
N
)
.
Proof
.
solve_ndisj
.
Qed
.
Lemma
test7
N
:
↑
N
⊆@
{
coPset
}
⊤
∖
∅.
Proof
.
solve_ndisj
.
Qed
.
This diff is collapsed.
Click to expand it.
theories/namespaces.v
+
11
−
0
View file @
b217790f
...
...
@@ -99,6 +99,17 @@ Global Hint Resolve coPset_disjoint_difference_l1 | 50 : ndisj.
Local
Definition
coPset_disjoint_difference_l2
:=
disjoint_difference_l2
(
C
:=
coPset
)
.
Global
Hint
Resolve
coPset_disjoint_difference_l2
|
100
:
ndisj
.
Global
Hint
Resolve
ndot_preserve_disjoint_l
ndot_preserve_disjoint_r
|
100
:
ndisj
.
Local
Definition
coPset_disjoint_empty_l
:=
disjoint_empty_l
(
C
:=
coPset
)
.
Global
Hint
Resolve
coPset_disjoint_empty_l
:
ndisj
.
Local
Definition
coPset_disjoint_empty_r
:=
disjoint_empty_r
(
C
:=
coPset
)
.
Global
Hint
Resolve
coPset_disjoint_empty_r
:
ndisj
.
(** We prefer ∖ on the left of ## (for the [disjoint_difference] lemmas to
apply), so try moving it there. *)
Global
Hint
Extern
10
(_
##
(_
∖
_))
=>
lazymatch
goal
with
|
|
-
(_
∖
_)
##
_
=>
fail
(* ∖ on both sides, leave it be *)
|
|
-
_
=>
symmetry
end
:
ndisj
.
Ltac
solve_ndisj
:=
repeat
match
goal
with
...
...
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