Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Unable to do "induction ... eqn:.."

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Unable to do "induction ... eqn:.."


Chronological Thread 
  • From: Vincent BENAYOUN <benayoun.vincent AT gmail.com>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] Unable to do "induction ... eqn:.."
  • Date: Wed, 28 Nov 2012 11:55:30 +0100

Hi all,

I need to use the tactic "induction term eqn:naming_intro_pattern" in some of my proofs but I get an error message.
Here is a simplified version of my problem.


If I remove "eqn:toto" from the following proof it works perfectly.
But why does it fail with "eqn:toto" ???

Inductive bbb : nat -> Prop :=
| BBB : bbb 0.

Lemma bbb_theorem :
  forall (n:nat), bbb n -> n = 0.
Proof.
  intros n HHH.
  induction HHH eqn:toto.
  reflexivity.
Qed.

Thanks,
Vincent



Archive powered by MHonArc 2.6.18.

Top of Page