Skip to Content.
Sympa Menu

coq-club - [Coq-Club] How to use [functional induction using]?

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] How to use [functional induction using]?


Chronological Thread 
  • From: Jason Gross <jasongross9 AT gmail.com>
  • To: coq-club <coq-club AT inria.fr>
  • Subject: [Coq-Club] How to use [functional induction using]?
  • Date: Fri, 10 Oct 2014 15:15:23 -0400

Hi,
Is there a way to make the following code work?  It currently says "Error: Not the right number of induction arguments." on the last line.

Require Import List.
Functional Scheme fold_right_rect := Induction for fold_right Sort Type.
Goal forall x ls, fold_right and x ls -> x.
Proof.
  intros x ls H.
  functional induction H using fold_right_rect.


Thanks,
Jason



Archive powered by MHonArc 2.6.18.

Top of Page