X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_transformations%2FapplyTransformation.ml;h=54402e0bc12372d17207fa16085b605521aaca06;hb=4167cea65ca58897d1a3dbb81ff95de5074700cc;hp=4d1a65069a380f4f223a3e88b2a2ebbf07b62a4b;hpb=10be6b9fb25a5bcd8721f707beba4b8a125591b5;p=helm.git diff --git a/helm/ocaml/cic_transformations/applyTransformation.ml b/helm/ocaml/cic_transformations/applyTransformation.ml index 4d1a65069..54402e0bc 100644 --- a/helm/ocaml/cic_transformations/applyTransformation.ml +++ b/helm/ocaml/cic_transformations/applyTransformation.ml @@ -34,23 +34,25 @@ (***************************************************************************) let mpres_document pres_box = - Ast2pres.add_xml_declaration - (Box.box2xml ~obj2xml:Mpresentation.print_mpres pres_box) + Xml.add_xml_declaration (CicNotationPres.print_box pres_box) let mml_of_cic_sequent metasenv sequent = - let asequent,ids_to_terms, - ids_to_father_ids,ids_to_inner_sorts,ids_to_hypotheses = - Cic2acic.asequent_of_sequent metasenv sequent in + let unsh_sequent,(asequent,ids_to_terms, + ids_to_father_ids,ids_to_inner_sorts,ids_to_hypotheses) + = + Cic2acic.asequent_of_sequent metasenv sequent + in let content_sequent = Cic2content.map_sequent asequent in let pres_sequent = - (Sequent2pres.sequent2pres ~ids_to_inner_sorts content_sequent) in + (Sequent2pres.sequent2pres ~ids_to_inner_sorts content_sequent) + in let xmlpres = mpres_document pres_sequent in - Xml2Gdome.document_of_xml Misc.domImpl xmlpres, + (Xml2Gdome.document_of_xml DomMisc.domImpl xmlpres, + unsh_sequent, (asequent, - (ids_to_terms,ids_to_father_ids,ids_to_hypotheses,ids_to_inner_sorts)) -;; + (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) = @@ -61,7 +63,7 @@ let mml_of_cic_object uri obj = in let pres = Content2pres.content2pres ~ids_to_inner_sorts content in let xmlpres = mpres_document pres in - let mathml = Xml2Gdome.document_of_xml Misc.domImpl xmlpres in + let mathml = Xml2Gdome.document_of_xml DomMisc.domImpl xmlpres in (mathml,(annobj, (ids_to_terms, ids_to_father_ids, ids_to_conjectures, ids_to_hypotheses, ids_to_inner_sorts,ids_to_inner_types)))