Sometimes I have a hypothesis in my proof context that I've used already, and now I know I won't need it anymore. In order to keep my context tidy while I work on the proof, I'd like to remove this hypothesis. Is there a tactic to do that?
Asked
Active
Viewed 286 times
2 Answers
2
If you use the SSReflect proof language, you can clear an hypothesis H
by using the {H}
notation. This can be done inline after many tactics such as move
or rewrite
, as in:
rewrite foo bar => {H}

Pierre Jouvelot
- 901
- 3
- 13