Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonas Kastberg
iris
Commits
857f9909
Commit
857f9909
authored
Feb 15, 2017
by
Robbert Krebbers
Browse files
Make solve_ndisj more powerful.
It now first turns hypotheses `X ∪ Y ⊆ Z` into `X ⊆ Z` and `Y ⊆ Z`.
parent
7b36d0e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
opam.pins
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
theories/base_logic/lib/namespaces.v
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
].
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment