]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/lambda-delta/src/toplevel/metaBrg.ml
hints polished and fixed to allow recursive inference of ext_carr
[helm.git] / helm / software / lambda-delta / src / toplevel / metaBrg.ml
index cde4daa135c1c915111d175acbd478a37d5767a6..72298dd13e88bbd2e3ec8bbda9141f3fc447eb86 100644 (file)
@@ -10,7 +10,7 @@
       V_______________________________________________________________ *)
 
 module C = Cps
-module Y = Entity
+module E = Entity
 module B = Brg
 module M = Meta
 
@@ -32,7 +32,7 @@ let rec xlate_term c f = function
       xlate_term c f v
    | M.Abst (id, w, t)   ->
       let f w = 
-         let a = [Y.Name (id, true)] in
+         let a = [E.Name (id, true)] in
         let f t = f (B.Bind (a, B.Abst w, t)) in
          xlate_term (B.push c B.empty a (B.Abst w)) f t
       in
@@ -40,7 +40,7 @@ let rec xlate_term c f = function
 
 let xlate_pars f pars =
    let map f (id, w) c =
-      let a = [Y.Name (id, true)] in
+      let a = [E.Name (id, true)] in
       let f w = f (B.push c B.empty a (B.Abst w)) in
       xlate_term c f w
    in