]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda_delta/basic_2/conversion/lfpc.ma
273873abdcf64a8142ec43b93603b80613988f04
[helm.git] / matita / matita / contribs / lambda_delta / basic_2 / conversion / lfpc.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/reducibility/lfpr.ma".
16
17 (* FOCALIZED PARALLEL CONVERSION ON LOCAL ENVIRONMENTS **********************)
18
19 definition lfpc: relation lenv ≝
20    λL1,L2. ⦃L1⦄ ➡ ⦃L2⦄ ∨ ⦃L2⦄ ➡ ⦃L1⦄.
21
22 interpretation
23    "focalized parallel conversion (local environment)"
24    'FocalizedPConv L1 L2 = (lfpc L1 L2).
25
26 (* Basic properties *********************************************************)
27
28 lemma lfpc_refl: ∀L. ⦃L⦄ ⬌ ⦃L⦄.
29 /2 width=1/ qed.
30
31 lemma lfpc_sym: ∀L1,L2. ⦃L1⦄ ⬌ ⦃L2⦄ → ⦃L2⦄ ⬌ ⦃L1⦄.
32 #L1 #L2 * /2 width=1/
33 qed.
34
35 lemma lfpc_lfpr: ∀L1,L2. ⦃L1⦄ ⬌ ⦃L2⦄ → ∃∃L. ⦃L1⦄ ➡ ⦃L⦄ & ⦃L2⦄ ➡ ⦃L⦄.
36 #L1 #L2 * /2 width=3/
37 qed.