X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fground%2Frelocation%2Fgr_nexts.ma;fp=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fground%2Frelocation%2Fgr_nexts.ma;h=0000000000000000000000000000000000000000;hb=f8b4eb67c2437f7b5174d7dca46e102e0ac0d19d;hp=88065e56d027d5b1a453211cffabba7134707a17;hpb=8bbe582d87984526f40182c4409cbfd43108cb79;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/ground/relocation/gr_nexts.ma b/matita/matita/contribs/lambdadelta/ground/relocation/gr_nexts.ma deleted file mode 100644 index 88065e56d..000000000 --- a/matita/matita/contribs/lambdadelta/ground/relocation/gr_nexts.ma +++ /dev/null @@ -1,51 +0,0 @@ -(**************************************************************************) -(* ___ *) -(* ||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 "ground/notation/functions/uparrowstar_2.ma". -include "ground/arith/nat_succ_iter.ma". -include "ground/relocation/gr_map.ma". - -(* ITERATED NEXT FOR GENERIC RELOCATION MAPS ********************************) - -(*** nexts *) -definition gr_nexts (f:gr_map) (n:nat) ≝ - (gr_next^n) f. - -interpretation - "iterated next (generic relocation maps)" - 'UpArrowStar n f = (gr_nexts f n). - -(* Basic constructions ******************************************************) - -(*** nexts_O *) -lemma gr_nexts_zero: - ∀f. f = ↑*[𝟎] f. -// qed. - -(*** nexts_swap *) -lemma gr_nexts_next (n): - ∀f. ↑↑*[n] f = ↑*[n] ↑f. -#f #n @(niter_appl … gr_next) -qed. - -(*** nexts_S *) -lemma gr_nexts_succ (n): - ∀f. ↑↑*[n] f = ↑*[↑n] f. -#f #n @(niter_succ … gr_next) -qed. - -(*** nexts_xn *) -lemma gr_nexts_swap (n): - ∀f. ↑*[n] ↑f = ↑*[↑n] f. -// qed.