X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=matita%2Fmatita%2Flib%2Flambda-delta%2Fsyntax%2Flenv.ma;fp=matita%2Fmatita%2Flib%2Flambda-delta%2Fsyntax%2Flenv.ma;h=0000000000000000000000000000000000000000;hb=e03c464898a47de95b6db7235b75b6f7a2c316d0;hp=c3aab910b1abfe44984d8fcc0f42d8c30a3c9cfb;hpb=14fef03bcc79583593a129bf9c68bdf690a10eb7;p=helm.git diff --git a/matita/matita/lib/lambda-delta/syntax/lenv.ma b/matita/matita/lib/lambda-delta/syntax/lenv.ma deleted file mode 100644 index c3aab910b..000000000 --- a/matita/matita/lib/lambda-delta/syntax/lenv.ma +++ /dev/null @@ -1,24 +0,0 @@ -(* - ||M|| This file is part of HELM, an Hypertextual, Electronic - ||A|| Library of Mathematics, developed at the Computer Science - ||T|| Department of the University of Bologna, Italy. - ||I|| - ||T|| - ||A|| This file is distributed under the terms of the - \ / GNU General Public License Version 2 - \ / - V_______________________________________________________________ *) - -include "lambda-delta/syntax/term.ma". - -(* LOCAL ENVIRONMENTS *******************************************************) - -(* local environments *) -inductive lenv: Type[0] ≝ -| LSort: lenv (* empty *) -| LPair: lenv → bind2 → term → lenv (* binary binding construction *) -. - -interpretation "sort (local environment)" 'Star = LSort. - -interpretation "environment binding construction (binary)" 'DBind L I T = (LPair L I T).