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
Tej Chajed
stdpp
Commits
8b197368
Commit
8b197368
authored
Apr 11, 2016
by
Robbert Krebbers
Browse files
Use (more primitive) case instead of destruct in done tactic.
parent
fc78a6ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/tactics.v
View file @
8b197368
...
...
@@ -56,7 +56,7 @@ Ltac done :=
|
contradiction
|
solve
[
apply
not_symmetry
;
trivial
]
|
split
]
|
match
goal
with
H
:
¬_
|-
_
=>
solve
[
destruct
H
;
trivial
]
end
].
|
match
goal
with
H
:
¬_
|-
_
=>
solve
[
case
H
;
trivial
]
end
].
Tactic
Notation
"by"
tactic
(
tac
)
:
=
tac
;
done
.
...
...
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