1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "lambda/levels/term.ma".
17 (* ITERATED ABSTRACTION *****************************************************)
19 definition labst: nat → lterm → lterm ≝ λh,M. match M with
21 | LAppl i C A ⇒ {i+h}@C.A
24 interpretation "iterated abstraction (term by level)"
25 'AnnotatedAbstraction h M = (labst h M).
27 interpretation "abstraction (term by level)"
28 'Abstraction M = (labst (S O) M).
30 lemma labst_O: ∀M. 𝛌0.M = M.