X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fdelayed_updating%2Fsyntax%2Flabel.ma;h=74318f3335d7298d225fea9f12d22777c93c1a46;hb=13584a37bbcde10e03c8a488f5b93e1e042da0a6;hp=d2a5c07831edb9829fcb1bcb1c6e5a1c925a2e42;hpb=2cc4eb5d0210be58286e028278852122dcb68052;p=helm.git diff --git a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/label.ma b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/label.ma index d2a5c0783..74318f333 100644 --- a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/label.ma +++ b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/label.ma @@ -14,6 +14,7 @@ include "ground/arith/pnat.ma". include "delayed_updating/notation/functions/nodelabel_d_1.ma". +include "delayed_updating/notation/functions/nodelabel_m_0.ma". include "delayed_updating/notation/functions/edgelabel_l_0.ma". include "delayed_updating/notation/functions/edgelabel_a_0.ma". include "delayed_updating/notation/functions/edgelabel_s_0.ma". @@ -21,24 +22,29 @@ include "delayed_updating/notation/functions/edgelabel_s_0.ma". (* LABEL ********************************************************************) inductive label: Type[0] ≝ -| label_node_d: pnat → label -| label_edge_L: label -| label_edge_A: label -| label_edge_S: label +| label_d: pnat → label +| label_m: label +| label_L: label +| label_A: label +| label_S: label . interpretation "variable reference by depth (label)" - 'NodeLabelD p = (label_node_d p). + 'NodeLabelD p = (label_d p). + +interpretation + "mark (label)" + 'NodeLabelM = (label_m). interpretation "name-free functional abstruction (label)" - 'EdgeLabelL = (label_edge_L). + 'EdgeLabelL = (label_L). interpretation "application (label)" - 'EdgeLabelA = (label_edge_A). + 'EdgeLabelA = (label_A). interpretation "side branch (label)" - 'EdgeLabelS = (label_edge_S). + 'EdgeLabelS = (label_S).