X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fmatita%2Fcontribs%2Flambdadelta%2Fdelayed_updating%2Fsyntax%2Flabel.ma;h=6a607559cae0c07e5aaccd85230a8261f422771f;hb=9e31ac1f3f868349154b0ce2e550e2476aaf6a30;hp=d2a5c07831edb9829fcb1bcb1c6e5a1c925a2e42;hpb=3c257bf84769adf162510ed86a89872e3003629a;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..6a607559c 100644 --- a/matita/matita/contribs/lambdadelta/delayed_updating/syntax/label.ma +++ b/matita/matita/contribs/lambdadelta/delayed_updating/syntax/label.ma @@ -12,8 +12,13 @@ (* *) (**************************************************************************) +(* A SYSTEM OF λ-CALCULUS WITH DELAYED UPDATING + * Initial invocation: - Patience on me to gain peace and perfection! - + *) + 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 +26,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 k = (label_d k). + +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).