Skip to content
GitLab
Menu
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
iris
Commits
427a99c4
Commit
427a99c4
authored
Apr 11, 2016
by
Robbert Krebbers
Browse files
Use (more primitive) case instead of destruct in done tactic.
parent
49b8b16d
Changes
1
Show whitespace changes
Inline
Side-by-side
prelude/tactics.v
View file @
427a99c4
...
...
@@ -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
.
Attach a 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