Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Type of matched item

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Type of matched item


chronological Thread 
  • From: Jeffrey Terrell <jeffrey.terrell AT kcl.ac.uk>
  • To: "coq-club AT inria.fr" <coq-club AT inria.fr>
  • Subject: [Coq-Club] Type of matched item
  • Date: Wed, 17 Aug 2011 17:26:57 +0100
  • Organization: King's College London

In f, are X and X0 the same set?

Inductive T : Set -> Type :=
   Build_T : forall X : Set, T X.

Definition f (X : Set) (t : T X) (x : X) :=
   match t with Build_T X0 => forall x0 : X0, x = x0 end.

If they are, why does Coq reject the expression x = x0?

If they're not, how are they related?

Thanks. Jeff.



Archive powered by MhonArc 2.6.16.

Top of Page