X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fdelayed_updating%2Funwind_k%2Fpreunwind2_rmap.ma;fp=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fdelayed_updating%2Funwind_k%2Fpreunwind2_rmap.ma;h=d6cdbce3d60dce514d9def49d29247ab06f547f3;hb=2815c74c03f38089d0e27aba00e2280223b0f76f;hp=0000000000000000000000000000000000000000;hpb=cf2a049a6cc888f6c5d0637ab0523f186058fc8f;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/unwind_k/preunwind2_rmap.ma b/matita/matita/contribs/lambdadelta/delayed_updating/unwind_k/preunwind2_rmap.ma new file mode 100644 index 000000000..d6cdbce3d --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/unwind_k/preunwind2_rmap.ma @@ -0,0 +1,55 @@ +(**************************************************************************) +(* ___ *) +(* ||M|| *) +(* ||A|| A project by Andrea Asperti *) +(* ||T|| *) +(* ||I|| Developers: *) +(* ||T|| The HELM team. *) +(* ||A|| http://helm.cs.unibo.it *) +(* \ / *) +(* \ / This file is distributed under the terms of the *) +(* v GNU General Public License Version 2 *) +(* *) +(**************************************************************************) + +include "delayed_updating/syntax/label.ma". +include "delayed_updating/notation/functions/black_righttriangle_2.ma". +include "ground/relocation/tr_uni.ma". +include "ground/relocation/tr_compose.ma". + +(* TAILED PREUNWIND FOR RELOCATION MAP **************************************) + +definition preunwind2_rmap (f) (l): tr_map ≝ +match l with +[ label_d k ⇒ f∘𝐮❨k❩ +| label_m ⇒ f +| label_L ⇒ ⫯f +| label_A ⇒ f +| label_S ⇒ f +]. + +interpretation + "tailed preunwind (relocation map)" + 'BlackRightTriangle f l = (preunwind2_rmap f l). + +(* Basic constructions ******************************************************) + +lemma preunwind2_rmap_d (f) (k:pnat): + f∘𝐮❨k❩ = ▶[f]𝗱k. +// qed. + +lemma preunwind2_rmap_m (f): + f = ▶[f]𝗺. +// qed. + +lemma preunwind2_rmap_L (f): + (⫯f) = ▶[f]𝗟. +// qed. + +lemma preunwind2_rmap_A (f): + f = ▶[f]𝗔. +// qed. + +lemma preunwind2_rmap_S (f): + f = ▶[f]𝗦. +// qed.