]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/contribs/lambda-delta/Basic-2/reduction/cpr_cpr.ma
d544918acc0e6dc2267619da5a948581b3a4c9fd
[helm.git] / matita / matita / contribs / lambda-delta / Basic-2 / reduction / cpr_cpr.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/reduction/tpr_tpr.ma".
16 include "Basic-2/reduction/cpr.ma".
17
18 (* CONTEXT-SENSITIVE PARALLEL REDUCTION ON TERMS ****************************)
19
20 (* Main properties **********************************************************)
21 (*
22 (* Basic-1: was: pr2_confluence *)
23 theorem cpr_conf: ∀L,U0,T1,T2. L ⊢ U0 ⇒ T1 → L ⊢ U0 ⇒ T2 →
24                   ∃∃T. L ⊢ T1 ⇒ T & L ⊢ T2 ⇒ T.
25 #L #U0 #T1 #T2 * #U1 #HU01 #HUT1 * #U2 #HU02 #HUT2
26 elim (tpr_conf … HU01 HU02) -U0 #U #HU1 #HU2 
27 qed.
28 *)