]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/basic_2/reducibility/xpr.ma
7375349efe659651ab8659973413a664c43298a6
[helm.git] / matita / matita / contribs / lambda_delta / basic_2 / reducibility / xpr.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/static/ssta.ma".
16 include "basic_2/reducibility/cpr.ma".
17
18 (* EXTENDED PARALLEL REDUCTION ON TERMS *************************************)
19
20 inductive xpr (h) (g) (L) (T1) (T2): Prop ≝
21 | xpr_cpr : L ⊢ T1 ➡ T2 → xpr h g L T1 T2
22 | xpr_ssta: ∀l. ⦃h, L⦄ ⊢ T1 •[g, l + 1] T2 → xpr h g L T1 T2
23 .
24
25 interpretation
26    "extended parallel reduction (term)"
27    'XPRed h g L T1 T2 = (xpr h g L T1 T2).
28
29 (* Basic properties *********************************************************)
30
31 lemma xpr_refl: ∀h,g,L. reflexive … (xpr h g L).
32 /2 width=1/ qed.