]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/components/binaries/matex/alpha.ml
- initial support for sigma-types
[helm.git] / matita / components / binaries / matex / alpha.ml
index 6420d20c67d92fbb563efa8a08b89fe1cd334a0d..b4d4b31cddb281352af8d90278649c6174f21e94 100644 (file)
@@ -17,7 +17,6 @@ module H = Hashtbl
 
 module U = NUri
 module C = NCic
-module R = NReference
 module E = NCicEnvironment
 module T = NCicTypeChecker
 
@@ -115,7 +114,7 @@ let global_apha st s =
 try 
    let i = H.find st.g s in
    H.replace st.g s (succ i);
-   P.sprintf "%s.%u" s i
+   P.sprintf "%s_%u" s i
 with Not_found ->
    H.add st.g s 0;
    s
@@ -178,4 +177,3 @@ with
 (* interface functions ******************************************************)
 
 let process_top_term s t = proc_named_term s (init ()) t
-