1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "basic_2/static/lfdeq_lfeq.ma".
16 include "basic_2/rt_computation/lfpxs_lpxs.ma".
17 include "basic_2/rt_computation/lfsx_lfpxs.ma".
19 (* STRONGLY NORMALIZING LOCAL ENV.S FOR UNBOUND PARALLEL RT-TRANSITION ******)
21 (* Properties with unbound rt-computation ***********************************)
23 lemma lfsx_intro_lpxs: ∀h,o,G,L1,T.
24 (∀L2. ⦃G, L1⦄ ⊢ ⬈*[h] L2 → (L1 ≛[h, o, T] L2 → ⊥) → G ⊢ ⬈*[h, o, T] 𝐒⦃L2⦄) →
25 G ⊢ ⬈*[h, o, T] 𝐒⦃L1⦄.
27 @lfsx_intro_lfpxs #L2 #H
28 elim (lfpxs_inv_lpxs_lfeq … H) -H
29 /6 width=3 by lfsx_lfdeq_trans, lfdeq_trans, lfeq_lfdeq/
32 lemma lfsx_lpxs_trans: ∀h,o,G,L1,T. G ⊢ ⬈*[h, o, T] 𝐒⦃L1⦄ →
33 ∀L2. ⦃G, L1⦄ ⊢ ⬈*[h] L2 → G ⊢ ⬈*[h, o, T] 𝐒⦃L2⦄.
34 /3 width=3 by lfsx_lfpxs_trans, lfpxs_lpxs/ qed-.
36 (* Eliminators with unbound rt-computation **********************************)
38 lemma lfsx_ind_lpxs: ∀h,o,G,T. ∀R:predicate lenv.
39 (∀L1. G ⊢ ⬈*[h, o, T] 𝐒⦃L1⦄ →
40 (∀L2. ⦃G, L1⦄ ⊢ ⬈*[h] L2 → (L1 ≛[h, o, T] L2 → ⊥) → R L2) →
43 ∀L. G ⊢ ⬈*[h, o, T] 𝐒⦃L⦄ → R L.
44 /5 width=6 by lfsx_ind_lfpxs, lfpxs_lpxs/ qed-.