]> 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_node_d _ ā‡’ depth q
27   | label_edge_L   ā‡’ ā†‘(depth q)
28   | label_edge_A   ā‡’ depth q
29   | label_edge_S   ā‡’ depth q
30   ]
31 ].
32
33 interpretation
34   "depth (path)"
35   'VerticalBars p = (depth p).
36
37 (* Basic constructions ******************************************************)
38
39 lemma depth_empty: šŸŽ = ā˜šžā˜.
40 // qed.
41
42 lemma depth_d (q) (n): ā˜qā˜ = ā˜š—±nā——qā˜.
43 // qed.
44
45 lemma depth_L (q): ā†‘ā˜qā˜ = ā˜š—Ÿā——qā˜.
46 // qed.
47
48 lemma depth_A (q): ā˜qā˜ = ā˜š—”ā——qā˜.
49 // qed.
50
51 lemma depth_S (q): ā˜qā˜ = ā˜š—¦ā——qā˜.
52 // qed.