]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/toplevel/meta.ml
some renaming and some interfaces improved
[helm.git] / helm / software / lambda-delta / toplevel / meta.ml
index 5b3895e796a282a3aa46c9b601aed728590e1d7b..a7af17273e4b6edf0d0633d1649d5fa62432cf75 100644 (file)
@@ -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 *)