From: Ferruccio Guidi <ferruccio.guidi@unibo.it> Date: Mon, 9 May 2022 19:08:36 +0000 (+0200) Subject: update in delayed_updating X-Git-Tag: make_still_working~74 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=d59f1c74c62ad3706d50707bb68758d88fbed006;p=helm.git update in delayed_updating + main function to locate the referred binder + update function for unfold --- diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/notation/functions/downarrowright_2.ma b/matita/matita/contribs/lambdadelta/delayed_updating/notation/functions/downarrowright_2.ma new file mode 100644 index 000000000..7531c6bcc --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/notation/functions/downarrowright_2.ma @@ -0,0 +1,19 @@ +(**************************************************************************) +(* ___ *) +(* ||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 *) +(* *) +(**************************************************************************) + +(* NOTATION FOR DELAYED UPDATING ********************************************) + +notation "hvbox( â³[ term 46 n ] break term 70 p )" + non associative with precedence 70 + for @{ 'DownArrowRight $n $p }. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/notation/functions/power_2.ma b/matita/matita/contribs/lambdadelta/delayed_updating/notation/functions/power_2.ma new file mode 100644 index 000000000..bed0c7fe5 --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/notation/functions/power_2.ma @@ -0,0 +1,19 @@ +(**************************************************************************) +(* ___ *) +(* ||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 *) +(* *) +(**************************************************************************) + +(* NOTATION FOR DELAYED UPDATING ********************************************) + +notation "hvbox( a ââ break b )" + left associative with precedence 65 + for @{ 'Power $a $b }. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_closed.ma b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_closed.ma deleted file mode 100644 index d8b00cabc..000000000 --- a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_closed.ma +++ /dev/null @@ -1,48 +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 "delayed_updating/syntax/path.ma". -include "delayed_updating/notation/functions/class_c_1.ma". -include "ground/lib/subset.ma". - -include "delayed_updating/syntax/path_depth.ma". -include "delayed_updating/syntax/path_height.ma". - -(* CLOSED CONDITION FOR PATH ************************************************) - -axiom pcc: relation2 nat path. - -interpretation - "closed condition (path)" - 'ClassC n = (pcc n). - -(* Basic destructions *******************************************************) - -axiom pcc_empty: - (ð) ϵ ðâ¨ðâ©. - -axiom pcc_d (p) (d) (n:pnat): - p ϵ ðâ¨d+nâ© â pâð±n ϵ ðâ¨dâ©. - -axiom pcc_L (p) (d): - p ϵ ðâ¨dâ© â pâð ϵ ðâ¨âdâ©. - -axiom pcc_A (p) (d): - p ϵ ðâ¨dâ© â pâð ϵ ðâ¨dâ©. - -axiom pcc_S (p) (d): - p ϵ ðâ¨dâ© â pâð¦ ϵ ðâ¨dâ©. - -axiom pcc_des_gen (p) (d): - p ϵ ðâ¨dâ© â d + â¯p = âpâ. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_labels.ma b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_labels.ma new file mode 100644 index 000000000..a01c225ee --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_labels.ma @@ -0,0 +1,42 @@ +(**************************************************************************) +(* ___ *) +(* ||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/path.ma". +include "delayed_updating/notation/functions/power_2.ma". +include "ground/arith/nat_succ_iter.ma". + +(* *) + +definition labels (l) (n:nat): path â + ((list_lcons ? l)^n) (ð). + +interpretation + "labels (path)" + 'Power l n = (labels l n). + +(* Basic constructions ******************************************************) + +lemma labels_unfold (l) (n): + ((list_lcons ? l)^n) (ð) = lâân. +// qed. + +lemma labels_zero (l): + (ð) = lââð. +// qed. + +lemma labels_succ (l) (n): + lâ(lâân) = lââ(ân). +#l #n +<labels_unfold <labels_unfold <niter_succ // +qed. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_reverse.ma b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_reverse.ma new file mode 100644 index 000000000..43d9d85e8 --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_reverse.ma @@ -0,0 +1,53 @@ +(**************************************************************************) +(* ___ *) +(* ||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/path.ma". +include "delayed_updating/notation/functions/nec_r_1.ma". + +(* REVERSE FOR PATH *********************************************************) + +rec definition reverse (p) on p: path â +match p with +[ list_empty â ð +| list_lcons l q â (reverse q)âl +]. + +interpretation + "reverse (path)" + 'NEcR p = (reverse p). + +(* Basic constructions ******************************************************) + +lemma reverse_empty: ð = ðá´¿. +// qed. + +lemma reverse_lcons (p) (l): pá´¿âl = (lâp)á´¿. +// qed. + +(* Main constructions *******************************************************) + +theorem reverse_append (p1) (p2): + (p2á´¿)â(p1á´¿) = (p1âp2)á´¿. +#p1 elim p1 -p1 // +#l1 #p1 #IH #p2 +<list_append_lcons_sn <reverse_lcons <reverse_lcons // +qed. + +(* Constructions with list_rcons ********************************************) + +lemma reverse_rcons (p) (l): + lâ(pá´¿) = (pâl)á´¿. +#p #l +<reverse_append // +qed. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_tail.ma b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_tail.ma new file mode 100644 index 000000000..193cc68e4 --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_tail.ma @@ -0,0 +1,73 @@ +(**************************************************************************) +(* ___ *) +(* ||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/path_labels.ma". +include "delayed_updating/notation/functions/downarrowright_2.ma". +include "ground/arith/nat_plus.ma". +include "ground/arith/nat_pred_succ.ma". + +(* TAIL FOR PATH ************************************************************) + +rec definition tail (m) (p) on p: path â +match m with +[ nzero â ð +| ninj o â + match p with + [ list_empty â ðââm + | list_lcons l q â + match l with + [ label_d n â lâ(tail (m+n) q) + | label_m â lâ(tail m q) + | label_L â lâ(tail (âo) q) + | label_A â lâ(tail m q) + | label_S â lâ(tail m q) + ] + ] +]. + +interpretation + "tail (reversed path)" + 'DownArrowRight n p = (tail n p). + +(* basic constructions ****************************************************) + +lemma tail_zero (p): + (ð) = â³[ð]p. +* // qed. + +lemma tail_empty (n): + (ðâân) = â³[n]ð. +* // qed. + +lemma tail_d_sn (p) (n) (m:pnat): + (ð±mââ³[ân+m]p) = â³[ân](ð±mâp). +// qed. + +lemma tail_m_sn (p) (n): + (ðºââ³[ân]p) = â³[ân](ðºâp). +// qed. + +lemma tail_L_sn (p) (n): + (ðââ³[n]p) = â³[ân](ðâp). +#p #n +whd in ⢠(???%); // +qed. + +lemma tail_A_sn (p) (n): + (ðââ³[ân]p) = â³[ân](ðâp). +// qed. + +lemma tail_S_sn (p) (n): + (ð¦ââ³[ân]p) = â³[ân](ð¦âp). +// qed. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_tail_depth.ma b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_tail_depth.ma new file mode 100644 index 000000000..bccbea075 --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/path_tail_depth.ma @@ -0,0 +1,44 @@ +(**************************************************************************) +(* ___ *) +(* ||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/path_tail.ma". +include "delayed_updating/syntax/path_depth.ma". +include "delayed_updating/syntax/path_height.ma". +(* +include "ground/arith/nat_plus.ma". +include "ground/arith/nat_pred_succ.ma". +*) +(* TAIL FOR PATH ************************************************************) + +(* Constructions with depth and height **************************************) + +axiom depth_lablels_L (n): + n = â(ðâân). + +axiom height_lablels_L (n): + (ð) = â¯(ðâân). + +lemma tail_depth (p) (n): + n + â¯(â³[n]p) = ââ³[n]p. +#p elim p -p // #l #p #IH +#n @(nat_ind_succ ⦠n) -n // #n #_ +cases l [ #m ] +[ <tail_d_sn <height_d_sn <depth_d_sn // +| <tail_m_sn <height_m_sn <depth_m_sn // +| <tail_L_sn <height_L_sn <depth_L_sn + <nplus_succ_sn // +| <tail_A_sn <height_A_sn <depth_A_sn // +| <tail_S_sn <height_S_sn <depth_S_sn // +] +qed. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/unwind/unwind1_rmap.ma b/matita/matita/contribs/lambdadelta/delayed_updating/unwind/unwind1_rmap.ma new file mode 100644 index 000000000..b94f56d5a --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/unwind/unwind1_rmap.ma @@ -0,0 +1,63 @@ +(**************************************************************************) +(* ___ *) +(* ||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/path.ma". +include "delayed_updating/notation/functions/black_righttriangle_1.ma". +include "ground/relocation/tr_uni.ma". +include "ground/relocation/tr_compose.ma". + +(* BASIC UNWIND MAP FOR PATH ************************************************) + +rec definition unwind1_rmap p on p: tr_map â +match p with +[ list_empty â ð¢ +| list_lcons l q â + match l with + [ label_d n â (unwind1_rmap q)âð®â¨nâ© + | label_m â unwind1_rmap q + | label_L â ⫯(unwind1_rmap q) + | label_A â unwind1_rmap q + | label_S â unwind1_rmap q + ] +]. + +interpretation + "basic unwind map (reversed path)" + 'BlackRightTriangle p = (unwind1_rmap p). + +(* Basic constructions *******************************************************) + +lemma unwind1_rmap_empty: + (ð¢) = â¶(ð). +// qed. + +lemma unwind1_rmap_d_sn (p) (n:pnat): + (â¶pâð®â¨nâ©) = â¶(ð±nâp). +// qed. + +lemma unwind1_rmap_m_sn (p): + â¶p = â¶(ðºâp). +// qed. + +lemma unwind1_rmap_L_sn (p): + (⫯â¶p) = â¶(ðâp). +// qed. + +lemma unwind1_rmap_A_sn (p): + â¶p = â¶(ðâp). +// qed. + +lemma unwind1_rmap_S_sn (p): + â¶p = â¶(ð¦âp). +// qed. diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/unwind/unwind1_rmap_tail.ma b/matita/matita/contribs/lambdadelta/delayed_updating/unwind/unwind1_rmap_tail.ma new file mode 100644 index 000000000..38fb8bf83 --- /dev/null +++ b/matita/matita/contribs/lambdadelta/delayed_updating/unwind/unwind1_rmap_tail.ma @@ -0,0 +1,82 @@ +(**************************************************************************) +(* ___ *) +(* ||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/unwind/unwind1_rmap.ma". +include "delayed_updating/syntax/path_tail_depth.ma". +include "delayed_updating/syntax/path_height.ma". + +(* BASIC UNWIND MAP FOR PATH ************************************************) + +include "ground/relocation/tr_uni_pap.ma". +include "ground/relocation/tr_compose_pap.ma". +include "ground/relocation/tr_pap_pn.ma". +include "ground/notation/functions/applysucc_2.ma". +include "ground/arith/nat_plus_rplus.ma". +include "ground/arith/nat_pred_succ.ma". + +definition tr_nap (f) (l:nat): nat â + â(f@â¨âlâ©). + +interpretation + "functional non-negative application (total relocation maps)" + 'ApplySucc f l = (tr_nap f l). + +lemma tr_nap_unfold (f) (l): + â(f@â¨âlâ©) = f@ââ¨lâ©. +// qed. + +lemma tr_compose_nap (f2) (f1) (l): + f2@ââ¨f1@ââ¨lâ©â© = (f2âf1)@ââ¨lâ©. +#f2 #f1 #l +<tr_nap_unfold <tr_nap_unfold <tr_nap_unfold +<tr_compose_pap <npsucc_pred // +qed. + +lemma tr_uni_nap (n) (m): + m + n = ð®â¨nâ©@ââ¨mâ©. +#n #m +<tr_nap_unfold +<tr_uni_pap <nrplus_npsucc_sn // +qed. + +lemma tr_nap_push (f): + âl. â(f@ââ¨lâ©) = (⫯f)@ââ¨âlâ©. +#f #l +<tr_nap_unfold <tr_nap_unfold +<tr_pap_push <pnpred_psucc // +qed. + +(****) + +lemma unwind1_rmap_labels_L (n): + (ð¢) = â¶(ðâân). +#n @(nat_ind_succ ⦠n) -n // +#n #IH +<labels_succ <unwind1_rmap_L_sn // +qed. + +lemma unwind1_rmap_tail (p) (n): + n + â¯(â³[n]p) = (â¶â³[n]p)@ââ¨nâ©. +#p elim p -p // +#l #p #IH #n @(nat_ind_succ ⦠n) -n // +#n #_ cases l [ #m ] +[ <unwind1_rmap_d_sn <tail_d_sn <height_d_sn + <nplus_assoc >IH -IH <tr_compose_nap // +| <unwind1_rmap_m_sn <tail_m_sn <height_m_sn // +| <unwind1_rmap_L_sn <tail_L_sn <height_L_sn + <tr_nap_push <npred_succ // +| <unwind1_rmap_A_sn <tail_A_sn <height_A_sn // +| <unwind1_rmap_S_sn <tail_S_sn <height_S_sn // +] +qed. diff --git a/matita/matita/contribs/lambdadelta/ground/notation/functions/applysucc_2.ma b/matita/matita/contribs/lambdadelta/ground/notation/functions/applysucc_2.ma new file mode 100644 index 000000000..177d04382 --- /dev/null +++ b/matita/matita/contribs/lambdadelta/ground/notation/functions/applysucc_2.ma @@ -0,0 +1,19 @@ +(**************************************************************************) +(* ___ *) +(* ||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 *) +(* *) +(**************************************************************************) + +(* GROUND NOTATION **********************************************************) + +notation "hvbox( f @â⨠break term 46 a â© )" + non associative with precedence 60 + for @{ 'ApplySucc $f $a }. diff --git a/matita/matita/predefined_virtuals.ml b/matita/matita/predefined_virtuals.ml index 1ee9d29e0..59df30532 100644 --- a/matita/matita/predefined_virtuals.ml +++ b/matita/matita/predefined_virtuals.ml @@ -1503,6 +1503,7 @@ let load_predefined_virtuals () = ;; let predefined_classes = [ + ["*"; "â"; ]; ["/"; "⧸"; ]; ["&"; "â "; ]; ["|"; "â"; "â¥"; ]; @@ -1522,7 +1523,7 @@ let predefined_classes = [ ["â"; "â³"; "â¬"; "â"; ]; ["â"; "â"; "â¬"; "â¬"; ] ; ["â¤"; "â²"; "â¼"; "â°"; "â´"; "â "; "â"; "â«"; "â"; ] ; - ["_"; "â"; "â"; "â£"; "â"; "â"; "â½"; "â¼"; "â»"; "âº"; "â¿"; ]; + ["_"; "â"; "â"; "â£"; "â"; "â"; "â³"; "â½"; "â¼"; "â»"; "âº"; "â¿"; ]; ["<"; "âº"; "â®"; "â"; "â©"; "«"; "â¬"; "â®"; "â°"; ] ; ["("; "â¨"; "âª"; "â²"; "ï¼"; ]; [")"; "â©"; "â«"; "â³"; "ï¼"; ];