Skip to Content.
Sympa Menu

coq-club - [Coq-Club] void : Type

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] void : Type


chronological Thread 
  • From: Gert Smolka <smolka AT ps.uni-saarland.de>
  • To: Coq-Club <coq-club AT inria.fr>
  • Subject: [Coq-Club] void : Type
  • Date: Mon, 02 May 2011 09:17:59 +0200

Inductive zero : Type := .
Check zero.
===> zero : Prop

Inductive one : Type := O : one.
Check one.
===> one : Prop

Inductive two : Type := A : two | B : two.
Check two.
===> two : Set

1. Why does Coq ignore my wish to place the types
in one of the universes Type ranges over?

2. Why are zero and one put into Prop while
two is put into Set?

-- Gert








Archive powered by MhonArc 2.6.16.

Top of Page