]> matita.cs.unibo.it Git - helm.git/commitdiff
removed useless parameter uri from mml_of_cic_object
authorStefano Zacchiroli <zack@upsilon.cc>
Tue, 1 Feb 2005 17:56:54 +0000 (17:56 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Tue, 1 Feb 2005 17:56:54 +0000 (17:56 +0000)
helm/ocaml/cic_transformations/applyTransformation.ml
helm/ocaml/cic_transformations/applyTransformation.mli

index 4d1a65069a380f4f223a3e88b2a2ebbf07b62a4b..6c0b0cddffb39eb14c29ae94409e055ed90cb023 100644 (file)
@@ -48,9 +48,8 @@ let mml_of_cic_sequent metasenv sequent =
   Xml2Gdome.document_of_xml Misc.domImpl xmlpres,
    (asequent,
     (ids_to_terms,ids_to_father_ids,ids_to_hypotheses,ids_to_inner_sorts))
-;;
 
-let mml_of_cic_object uri obj =
+let mml_of_cic_object obj =
   let (annobj, ids_to_terms, ids_to_father_ids, ids_to_inner_sorts,
     ids_to_inner_types, ids_to_conjectures, ids_to_hypotheses)
   =
index f7d3d2da2c09cfa15b1e865e8ee44eba02d9bbde..fc5fd547a0e088c3494d08c84c307412c64ea122 100644 (file)
@@ -33,7 +33,7 @@
 (*                                                                         *)
 (***************************************************************************)
 
-val mml_of_cic_sequent :
+val mml_of_cic_sequent:
  Cic.metasenv ->                          (* metasenv *)
  Cic.conjecture ->                        (* sequent *)
   Gdome.document *                            (* Math ML *)
@@ -43,9 +43,8 @@ val mml_of_cic_sequent :
      (Cic.id, Cic.hypothesis) Hashtbl.t *     (* id -> hypothesis *)
      (Cic.id, string) Hashtbl.t))             (* ids_to_inner_sorts *)
 
-val mml_of_cic_object :
-  UriManager.uri ->                       (* object uri *)
-  Cic.obj ->                              (* uri *)
+val mml_of_cic_object:
+  Cic.obj ->                              (* object *)
     Gdome.document *                          (* Math ML *)
      (Cic.annobj *                            (* annobj *)
       ((Cic.id, Cic.term) Hashtbl.t *         (* id -> term *)