X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbasic_2%2Fsyntax%2Flenv_weight.ma;fp=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fbasic_2%2Fsyntax%2Flenv_weight.ma;h=0000000000000000000000000000000000000000;hb=ff612dc35167ec0c145864c9aa8ae5e1ebe20a48;hp=74a38894454a394e364ddcd4dd148d6ce4d97cec;hpb=222044da28742b24584549ba86b1805a87def070;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/basic_2/syntax/lenv_weight.ma b/matita/matita/contribs/lambdadelta/basic_2/syntax/lenv_weight.ma deleted file mode 100644 index 74a388944..000000000 --- a/matita/matita/contribs/lambdadelta/basic_2/syntax/lenv_weight.ma +++ /dev/null @@ -1,35 +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 *) -(* *) -(**************************************************************************) - -include "basic_2/syntax/bind_weight.ma". -include "basic_2/syntax/lenv.ma". - -(* WEIGHT OF A LOCAL ENVIRONMENT ********************************************) - -rec definition lw L ≝ match L with -[ LAtom ⇒ 0 -| LBind L I ⇒ lw L + ♯{I} -]. - -interpretation "weight (local environment)" 'Weight L = (lw L). - -(* Basic properties *********************************************************) - -(* Basic_2A1: uses: lw_pair *) -lemma lw_bind: ∀I,L. ♯{L} < ♯{L.ⓘ{I}}. -normalize /2 width=1 by monotonic_le_plus_r/ qed. - -(* Basic_1: removed theorems 4: clt_cong clt_head clt_thead clt_wf_ind *) -(* Basic_1: removed local theorems 1: clt_wf__q_ind *) -(* Basic_1: note: clt_thead should be renamed clt_ctail *)