Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
Manage
Activity
Members
Labels
Plan
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
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
Paolo G. Giarrusso
iris
Commits
857f9909
Commit
857f9909
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Make solve_ndisj more powerful.
It now first turns hypotheses `X ∪ Y ⊆ Z` into `X ⊆ Z` and `Y ⊆ Z`.
parent
7b36d0e4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
opam.pins
+1
-1
1 addition, 1 deletion
opam.pins
theories/base_logic/lib/namespaces.v
+5
-1
5 additions, 1 deletion
theories/base_logic/lib/namespaces.v
with
6 additions
and
2 deletions
opam.pins
+
1
−
1
View file @
857f9909
coq-stdpp https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp
613168bf8af3af0fe31873efd89038a89800792e
coq-stdpp https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp
3103b7bf52d0275f2938d9af44ab2d0db89a6251
This diff is collapsed.
Click to expand it.
theories/base_logic/lib/namespaces.v
+
5
−
1
View file @
857f9909
...
...
@@ -95,4 +95,8 @@ Hint Extern 1 (_ ⊆ _) => apply nclose_subseteq' : ndisj.
Hint
Resolve
namespace_subseteq_difference_l
|
100
:
ndisj
.
Hint
Resolve
ndisj_difference_l
:
ndisj
.
Ltac
solve_ndisj
:=
solve
[
eauto
with
ndisj
]
.
Ltac
solve_ndisj
:=
repeat
match
goal
with
|
H
:
_
∪
_
⊆
_
|
-
_
=>
apply
union_subseteq
in
H
as
[??]
end
;
solve
[
eauto
with
ndisj
]
.
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