Skip to Content.
Sympa Menu

coq-club - [Coq-Club] an inductive definition? (correction)

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] an inductive definition? (correction)


chronological Thread 
  • From: Vladimir Voevodsky <vladimir AT ias.edu>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] an inductive definition? (correction)
  • Date: Sat, 18 Sep 2010 14:14:29 -0400


Sorry, the definition was supposed to be of the form:

Inductive U (T:Type) :Type := gen: U |  prod: forall X:U, forall P: elem X -> 
U,  U

with

fixpoint elem (X:U) : Type := 

match X with 

| gen => T

| prod Y P => forall y: elem Y, elem (P y)

end.

.

Then it would be reasonable to expect that if T:Type(0) then U(T):Type(0).

Vladimir.









Archive powered by MhonArc 2.6.16.

Top of Page