]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/src/toplevel/meta.ml
we removed old HAL exportation (replaced by XML exportation)
[helm.git] / helm / software / lambda-delta / src / toplevel / meta.ml
index 55397725113decf38625d8309ba39bd17f9e6891..1a710278ed27ce9c2a07e66e34cd966d408cce00 100644 (file)
@@ -9,8 +9,10 @@
      \ /   This software is distributed as is, NO WARRANTY.              
       V_______________________________________________________________ *)
 
-type uri = Entity.uri
-type id = Entity.id
+module E = Entity
+
+type uri = E.uri
+type id = E.id
 
 type term = Sort of bool                  (* sorts: true = TYPE, false = PROP *)
          | LRef of int * int             (* local reference: local environment length, de bruijn index *)
@@ -22,4 +24,4 @@ type pars = (id * term) list (* parameter declarations: name, type *)
 
 type entry = pars * term * term option (* parameters, domain, body *)
 
-type entity = entry Entity.entity
+type entity = entry E.entity