Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] robust form of [ induction ]

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] robust form of [ induction ]


chronological Thread 
  • From: "gallais @ ensl.org" <guillaume.allais AT ens-lyon.org>
  • To: Vladimir Voevodsky <vladimir AT ias.edu>
  • Cc: Coq-Club Club <coq-club AT inria.fr>
  • Subject: Re: [Coq-Club] robust form of [ induction ]
  • Date: Tue, 28 Jun 2011 21:56:59 +0200

Hi Vladimir,

[as] should do the trick. If you try:

==========
Goal forall (n: nat), True.
intro n ; induction n as [| m Hp].
 apply I.
==========

you will see that the variable is named [m] and the induction
hypothesis is [Hp]

Cheers,

--
guillaume



On 28 June 2011 21:42, Vladimir Voevodsky 
<vladimir AT ias.edu>
 wrote:
> Hello,
>
> is there a way to prescribe explicitly the names of all the variables 
> introduced by the tactic command [ induction n ] in the case when [ n : nat 
> ] ?
>
> Thanks!
> Vladimir.
>
>
>
>



Archive powered by MhonArc 2.6.16.

Top of Page