]> matita.cs.unibo.it Git - helm.git/commitdiff
removed some old debugging messages
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 15 Oct 2004 14:09:32 +0000 (14:09 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 15 Oct 2004 14:09:32 +0000 (14:09 +0000)
helm/ocaml/cic_transformations/acic2Ast.ml
helm/ocaml/cic_transformations/sequent2pres.ml
helm/ocaml/cic_transformations/xml2Gdome.ml

index 24d2e07f3dc35db110bfd7dd6a2298a2d3a08ac9..567b7f7bb6b38746d1f220251e0362d6d97691e4 100644 (file)
@@ -72,7 +72,6 @@ let ast_of_acic ids_to_inner_sorts acic =
   in
   let idref id t = Ast.AttributedTerm (`IdRef id, t) in
   let rec aux =
-prerr_endline "Acic2ast.aux";
     function
     | Cic.ARel (id,_,_,b) -> idref id (Ast.Ident (b, None))
     | Cic.AVar (id,uri,subst) ->
@@ -215,9 +214,7 @@ prerr_endline "Acic2ast.aux";
       context
 
   in
-  let res = aux acic, ids_to_uris in
-prerr_endline "/Acic2ast.aux";
-  res
+  aux acic, ids_to_uris
 
 let _ = (** fill symbol_table *)
   let add_symbol name uri =
index 57d7d9140a9868d147147cd49774b0ce710732c2..afd2292ba0bfe7b8823151d2485980ca4a8b3337 100644 (file)
@@ -102,7 +102,6 @@ let sequent2pres ~ids_to_inner_sorts =
 *)
 
 let sequent2pres ~ids_to_inner_sorts =
-prerr_endline "Sequent2pres.sequent2pres";
   sequent2pres
     (fun annterm ->
       let (ast, ids_to_uris) as arg =
index 3c77c91b70ad3bd9d4804e5e67b3e358976f3ef0..3d07bf21cc37aaa97b9e86b1fe44d313a6ffe36c 100644 (file)
@@ -24,7 +24,6 @@
  *)
 
 let document_of_xml (domImplementation : Gdome.domImplementation) strm =
-prerr_endline "LUCA: entro nella document_of_xml" ;
  let module G = Gdome in
  let module X = Xml in
   let rec update_namespaces ((defaultns,bindings) as namespaces) =
@@ -58,7 +57,6 @@ prerr_endline "LUCA: entro nella document_of_xml" ;
     | X.NEmpty(p,n,l,c) -> p,n,l,c
     | _ -> assert false
   in
-prerr_endline "LUCA: entro nella document_of_xml interna" ;
    let namespaces = update_namespaces (None,[]) root_attributes in
    let namespaceURI = namespace_of_prefix namespaces root_prefix in
    let document =
@@ -130,8 +128,6 @@ prerr_endline "LUCA: entro nella document_of_xml interna" ;
            ~qualifiedName:(get_qualified_name p n)
            ~value:(Gdome.domString v)
       ) root_attributes ;
-prerr_endline "LUCA: prima di aux" ;
      aux namespaces (root : Gdome.element :> Gdome.node) root_content ;
-prerr_endline "LUCA: dopo di aux" ;
      document
 ;;