]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/contribs/LAMBDA-TYPES/Unified-Sub/datatypes/Term.ma
AMBDA-TYPES: some improvements. subst now fully exploited
[helm.git] / matita / contribs / LAMBDA-TYPES / Unified-Sub / datatypes / Term.ma
index 8c2fb6ec68e4a0052332bf43d96643ee736c311f..a7f5e7f075f1edff55fb372cf1e90aa9309cc3ae 100644 (file)
@@ -26,26 +26,26 @@ set "baseuri" "cic:/matita/LAMBDA-TYPES/Unified-Sub/datatypes/Term".
 
 include "preamble.ma".
 
-inductive Bind: Set \def
+inductive Bind: Type \def
    | abbr: Bind
    | abst: Bind
    | excl: Bind
 .
 
-inductive Flat: Set \def
+inductive Flat: Type \def
    | appl: Flat
    | cast: Flat
 .
 
-inductive IntB: Set \def
+inductive IntB: Type \def
    | bind: Bool \to Bind \to IntB
 .
 
-inductive IntF: Set \def
+inductive IntF: Type \def
    | flat: Bool \to Flat \to IntF
 .
 
-inductive Term: Set \def
+inductive Term: Type \def
    | sort: Nat  \to Term
    | lref: Nat  \to Term
    | intb: IntB \to Term \to Term \to Term