]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/basic_ag/bag.ml
some interfaces improved
[helm.git] / helm / software / lambda-delta / basic_ag / bag.ml
index 32a9b0c5b983b2361b5495776d6de7575935717e..3fa4568d1d21574de62884f771703a5b8cb8ab20 100644 (file)
@@ -12,8 +12,8 @@
 (* kernel version: basic, absolute, global *)
 (* note          : experimental *) 
 
-type uri = Item.uri
-type id = Item.id
+type uri = Unit.uri
+type id = Unit.id
 
 type bind = Void         (* exclusion *)
           | Abst of term (* abstraction *)
@@ -26,9 +26,9 @@ and term = Sort of int                    (* hierarchy index *)
          | Appl of term * term            (* argument, function *)
          | Bind of int * id * bind * term (* location, name, binder, scope *)
 
-type obj = bind Item.obj (* age, uri, binder *)
+type entry = bind Unit.entry (* age, uri, binder *)
 
-type item = bind Item.item
+type unit = bind Unit.unit
 
 type lenv = (int * id * bind) list (* location, name, binder *)