X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matitaB%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FBasic-1%2FT%2Fdefs.ma;fp=matitaB%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FBasic-1%2FT%2Fdefs.ma;h=0000000000000000000000000000000000000000;hb=88a68a9c334646bc17314d5327cd3b790202acd6;hp=6ddbe6d0d46d8688894eb51f1c6f3f98c702f79c;hpb=4904accd80118cb8126e308ae098d87f8651c9f4;p=helm.git diff --git a/matitaB/matita/contribs/LAMBDA-TYPES/Basic-1/T/defs.ma b/matitaB/matita/contribs/LAMBDA-TYPES/Basic-1/T/defs.ma deleted file mode 100644 index 6ddbe6d0d..000000000 --- a/matitaB/matita/contribs/LAMBDA-TYPES/Basic-1/T/defs.ma +++ /dev/null @@ -1,43 +0,0 @@ -(**************************************************************************) -(* ___ *) -(* ||M|| *) -(* ||A|| A project by Andrea Asperti *) -(* ||T|| *) -(* ||I|| Developers: *) -(* ||T|| The HELM team. *) -(* ||A|| http://helm.cs.unibo.it *) -(* \ / *) -(* \ / This file is distributed under the terms of the *) -(* v GNU General Public License Version 2 *) -(* *) -(**************************************************************************) - -(* This file was automatically generated: do not edit *********************) - -include "Basic-1/preamble.ma". - -inductive B: Set \def -| Abbr: B -| Abst: B -| Void: B. - -inductive F: Set \def -| Appl: F -| Cast: F. - -inductive K: Set \def -| Bind: B \to K -| Flat: F \to K. - -inductive T: Set \def -| TSort: nat \to T -| TLRef: nat \to T -| THead: K \to (T \to (T \to T)). - -definition tweight: - T \to nat -\def - let rec tweight (t: T) on t: nat \def (match t with [(TSort _) \Rightarrow -(S O) | (TLRef _) \Rightarrow (S O) | (THead _ u t0) \Rightarrow (S (plus -(tweight u) (tweight t0)))]) in tweight. -