Skip to Content.
Sympa Menu

coq-club - [Coq-Club] simplifying implications with obvious hypotheses

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] simplifying implications with obvious hypotheses


Chronological Thread 
  • From: Éric Tanter <etanter AT dcc.uchile.cl>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] simplifying implications with obvious hypotheses
  • Date: Sun, 2 Nov 2014 10:40:56 -0300

Hi Club,

Is there an automatic way to clean up the context of implications with
obvious hypotheses?

For instance, I'd like to clean this up:

n : nat
H1: n = n -> fact1
H2: n = n -> fact2
========

as follows:

n : nat
H1: fact1
H2: fact2
========

in order to avoid to explicitly discharge n = n with reflexivity each time I
use H1 and H2.

Thanks,

-- Éric



Archive powered by MHonArc 2.6.18.

Top of Page