]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic/helmLibraryObjects.ml
removed old function term_of_uri (now in CicUtil)
[helm.git] / helm / ocaml / cic / helmLibraryObjects.ml
index ce81281a74a1ee48978d249c262c0606e25616a8..6ebdf8e1fac2cd0c94c5ae35b5da5060bdcec88e 100644 (file)
@@ -24,11 +24,11 @@ let indconuri_of_uri uri =
     int_of_string
       (String.sub uri index_con (String.length uri - index_con)))
 
+(*  (* NO LONGER USED, see CicUtil.term_of_uri *)
 let term_of_uri ?(subst = []) uri =
   let s = UriManager.string_of_uri uri in
   try
   (* Constant *)
-  (* TODO explicit substitutions? *)
   let len = String.length s in
   let sub = String.sub s (len -4) 4 in
   if sub = ".con" then
@@ -47,6 +47,7 @@ let term_of_uri ?(subst = []) uri =
           mutconstruct ~subst uri typeno consno)
  with
  | Invalid_argument _ | Not_found -> raise (UriManager.IllFormedUri s)
+*)
 
 (** {2 Helm's objects shorthands} *)