]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/lib/lambda/terms/size.ma
3396dc415044f7a1f596ddc86b439350e60efdf5
[helm.git] / matita / matita / lib / lambda / terms / size.ma
1 (**************************************************************************)
2 (*       ___                                                              *)
3 (*      ||M||                                                             *)
4 (*      ||A||       A project by Andrea Asperti                           *)
5 (*      ||T||                                                             *)
6 (*      ||I||       Developers:                                           *)
7 (*      ||T||         The HELM team.                                      *)
8 (*      ||A||         http://helm.cs.unibo.it                             *)
9 (*      \   /                                                             *)
10 (*       \ /        This file is distributed under the terms of the       *)
11 (*        v         GNU General Public License Version 2                  *)
12 (*                                                                        *)
13 (**************************************************************************)
14
15 include "lambda/terms/relocation.ma".
16
17 (* SIZE *********************************************************************)
18
19 (* Note: this gives the number of abstractions and applications in M *)
20 let rec size M on M ≝ match M with
21 [ VRef i   ⇒ 0
22 | Abst A   ⇒ size A + 1
23 | Appl B A ⇒ (size B) + (size A) + 1
24 ].
25
26 interpretation "term size"
27    'card M = (size M).
28
29 lemma size_lift: ∀h,M,d. |↑[d, h] M| = |M|.
30 #h #M elim M -M normalize //
31 qed.