]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/src/basic_ag/bag.ml
a module was missing .........
[helm.git] / helm / software / lambda-delta / src / basic_ag / bag.ml
index 1aa9b62e749a79b5f2494ce0d09b67932235584f..d3ac2c8ee544d22616ba96859df8ec353fde5822 100644 (file)
 (* 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 *)