X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Flambda-delta%2Fsrc%2Fbasic_ag%2Fbag.ml;h=d3ac2c8ee544d22616ba96859df8ec353fde5822;hb=fa9e69af2ad5a22692f6fdd555d37bc6d80c5ad9;hp=1aa9b62e749a79b5f2494ce0d09b67932235584f;hpb=ab13cfa248f0ee58d239ceeddfb50ec49a6b5c6d;p=helm.git diff --git a/helm/software/lambda-delta/src/basic_ag/bag.ml b/helm/software/lambda-delta/src/basic_ag/bag.ml index 1aa9b62e7..d3ac2c8ee 100644 --- a/helm/software/lambda-delta/src/basic_ag/bag.ml +++ b/helm/software/lambda-delta/src/basic_ag/bag.ml @@ -12,8 +12,10 @@ (* kernel version: basic, absolute, global *) (* note : experimental *) -type uri = Entity.uri -type id = Entity.id +module E = Entity + +type uri = E.uri +type id = E.id type bind = Void (* exclusion *) | Abst of term (* abstraction *) @@ -26,7 +28,7 @@ and term = Sort of int (* hierarchy index *) | Appl of term * term (* argument, function *) | Bind of int * id * bind * term (* location, name, binder, scope *) -type entity = term Entity.entity (* attrs, uri, binder *) +type entity = term E.entity (* attrs, uri, binder *) type lenv = (int * id * bind) list (* location, name, binder *)