X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Ftoplevel%2Fmeta.ml;fp=helm%2Fsoftware%2Flambda-delta%2Ftoplevel%2Fmeta.ml;h=a7af17273e4b6edf0d0633d1649d5fa62432cf75;hb=8a4c83c6341976f2bb70eb44a0c70f2aa95ad3ea;hp=5b3895e796a282a3aa46c9b601aed728590e1d7b;hpb=f5f35ef830b1335dad2fcc3c1aae2b57815f73b1;p=helm.git diff --git a/helm/software/lambda-delta/toplevel/meta.ml b/helm/software/lambda-delta/toplevel/meta.ml index 5b3895e79..a7af17273 100644 --- a/helm/software/lambda-delta/toplevel/meta.ml +++ b/helm/software/lambda-delta/toplevel/meta.ml @@ -9,13 +9,13 @@ \ / This software is distributed as is, NO WARRANTY. V_______________________________________________________________ *) -type uri = NUri.uri +type uri = Item.uri -type id = Aut.id +type id = Item.id type term = Sort of bool (* sorts: true = TYPE, false = PROP *) - | LRef of int * int (* local reference: context length, de bruijn index *) - | GRef of int * uri * term list (* global reference: context length, name, arguments *) + | LRef of int * int (* local reference: local environment length, de bruijn index *) + | GRef of int * uri * term list (* global reference: local environment length, name, arguments *) | Appl of term * term (* application: argument, function *) | Abst of id * term * term (* abstraction: name, type, scope *)