X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FUnified-Sub%2Fdatatypes%2FTerm.ma;fp=helm%2Fsoftware%2Fmatita%2Fcontribs%2FLAMBDA-TYPES%2FUnified-Sub%2Fdatatypes%2FTerm.ma;h=0000000000000000000000000000000000000000;hb=076f639446efce8d8cf83dcf7ca40b4376fc8c36;hp=d1a98de5a03a70749e9c52df5eb41c1efd679ad9;hpb=8da8820a77f2104dd1bf17c01fa77f75ee31c8fb;p=helm.git diff --git a/helm/software/matita/contribs/LAMBDA-TYPES/Unified-Sub/datatypes/Term.ma b/helm/software/matita/contribs/LAMBDA-TYPES/Unified-Sub/datatypes/Term.ma deleted file mode 100644 index d1a98de5a..000000000 --- a/helm/software/matita/contribs/LAMBDA-TYPES/Unified-Sub/datatypes/Term.ma +++ /dev/null @@ -1,51 +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 *) -(* *) -(**************************************************************************) - -(* POLARIZED TERMS - - Naming policy: - - natural numbers : sorts h k, local references i j, lengths l o - - boolean values : p q - - generic binding items: r s - - generic flat items : r s - - generic head items : m n - - terms : t u -*) - -include "Unified-Sub/preamble.ma". - -inductive Bind: Type \def - | abbr: Bind - | abst: Bind - | excl: Bind -. - -inductive Flat: Type \def - | appl: Flat - | cast: Flat -. - -inductive IntB: Type \def - | bind: Bool \to Bind \to IntB -. - -inductive IntF: Type \def - | flat: Bool \to Flat \to IntF -. - -inductive Term: Type \def - | sort: Nat \to Term - | lref: Nat \to Term - | intb: IntB \to Term \to Term \to Term - | intf: IntF \to Term \to Term \to Term -.