]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_depth.ma
update in delayed_updating
[helm.git] / matita / matita / contribs / lambdadelta / delayed_updating / syntax / path_depth.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 "delayed_updating/syntax/path.ma".
16 include "ground/arith/nat_succ.ma".
17 include "ground/notation/functions/verticalbars_1.ma".
18
19 (* DEPTH FOR PATH ***********************************************************)
20
21 rec definition depth (p) on p: nat ā‰
22 match p with
23 [ list_empty     ā‡’ šŸŽ
24 | list_lcons l q ā‡’
25   match l with
26   [ label_d _ ā‡’ depth q
27   | label_m   ā‡’ depth q
28   | label_L   ā‡’ ā†‘(depth q)
29   | label_A   ā‡’ depth q
30   | label_S   ā‡’ depth q
31   ]
32 ].
33
34 interpretation
35   "depth (path)"
36   'VerticalBars p = (depth p).
37
38 (* Basic constructions ******************************************************)
39
40 lemma depth_empty: šŸŽ = ā˜šžā˜.
41 // qed.
42
43 lemma depth_d (q) (n): ā˜qā˜ = ā˜š—±nā——qā˜.
44 // qed.
45
46 lemma depth_m (q): ā˜qā˜ = ā˜š—ŗā——qā˜.
47 // qed.
48
49 lemma depth_L (q): ā†‘ā˜qā˜ = ā˜š—Ÿā——qā˜.
50 // qed.
51
52 lemma depth_A (q): ā˜qā˜ = ā˜š—”ā——qā˜.
53 // qed.
54
55 lemma depth_S (q): ā˜qā˜ = ā˜š—¦ā——qā˜.
56 // qed.