]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambdadelta/basic_2/dynamic/ypr.ma
passive support for global environments completed!
[helm.git] / matita / matita / contribs / lambdadelta / basic_2 / dynamic / ypr.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 "basic_2/notation/relations/btpred_8.ma".
16 include "basic_2/relocation/fsup.ma".
17 include "basic_2/reduction/lpr.ma".
18 include "basic_2/dynamic/lsubsv.ma".
19
20 (* "BIG TREE" PARALLEL REDUCTION FOR CLOSURES *******************************)
21
22 inductive ypr (h) (g) (G1) (L1) (T1): relation3 genv lenv term ≝
23 | ypr_fsup  : ∀G2,L2,T2. ⦃G1, L1, T1⦄ ⊃ ⦃G2, L2, T2⦄ → ypr h g G1 L1 T1 G2 L2 T2
24 | ypr_lpr   : ∀L2. ⦃G1, L1⦄ ⊢ ➡ L2 → ypr h g G1 L1 T1 G1 L2 T1
25 | ypr_cpr   : ∀T2. ⦃G1, L1⦄ ⊢ T1 ➡ T2 → ypr h g G1 L1 T1 G1 L1 T2
26 | ypr_ssta  : ∀T2,l. ⦃G1, L1⦄ ⊢ T1 •[h, g] ⦃l+1, T2⦄ → ypr h g G1 L1 T1 G1 L1 T2
27 | ypr_lsubsv: ∀L2. G1 ⊢ L2 ¡⊑[h, g] L1 → ypr h g G1 L1 T1 G1 L2 T1
28 .
29
30 interpretation
31    "'big tree' parallel reduction (closure)"
32    'BTPRed h g G1 L1 T1 G2 L2 T2 = (ypr h g G1 L1 T1 G2 L2 T2).
33
34 (* Basic properties *********************************************************)
35
36 lemma ypr_refl: ∀h,g. tri_reflexive … (ypr h g).
37 /2 width=1/ qed.