X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_transformations%2FapplyTransformation.ml;h=57d26f1681fda95c87abdf3ea8d0fca5dfd7994f;hb=53ee2f5095adadffcafb40e436d23dc330d3bd87;hp=6eff8d17bbb0ddfc67b668ace8e50ddd6f1f1807;hpb=e5f4d8fa36a154bbc0a555eefa5ccc0bdb29afb0;p=helm.git diff --git a/helm/ocaml/cic_transformations/applyTransformation.ml b/helm/ocaml/cic_transformations/applyTransformation.ml index 6eff8d17b..57d26f168 100644 --- a/helm/ocaml/cic_transformations/applyTransformation.ml +++ b/helm/ocaml/cic_transformations/applyTransformation.ml @@ -33,12 +33,9 @@ (* *) (***************************************************************************) -let reload_stylesheets = ignore -;; - let mpres_document pres_box = - Ast2pres.add_xml_declaration - (Box.box2xml ~obj2xml:Mpresentation.print_mpres pres_box) + let obj2xml obj = Mpresentation.print_mpres (fun _ -> assert false) obj in + Ast2pres.add_xml_declaration (Box.box2xml ~obj2xml pres_box) let mml_of_cic_sequent metasenv sequent = let asequent,ids_to_terms, @@ -49,17 +46,22 @@ let mml_of_cic_sequent metasenv sequent = (Sequent2pres.sequent2pres ~ids_to_inner_sorts content_sequent) in let xmlpres = mpres_document pres_sequent in Xml2Gdome.document_of_xml Misc.domImpl xmlpres, - (ids_to_terms,ids_to_father_ids,ids_to_hypotheses) -;; + (asequent, + (ids_to_terms,ids_to_father_ids,ids_to_hypotheses,ids_to_inner_sorts)) -let mml_of_cic_object ~explode_all uri acic - ids_to_inner_sorts ids_to_inner_types -= +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) + = + Cic2acic.acic_object_of_cic_object obj + in let content = - Cic2content.annobj2content ~ids_to_inner_sorts ~ids_to_inner_types acic + Cic2content.annobj2content ~ids_to_inner_sorts ~ids_to_inner_types annobj in let pres = Content2pres.content2pres ~ids_to_inner_sorts content in let xmlpres = mpres_document pres in - Xml2Gdome.document_of_xml Misc.domImpl xmlpres -;; + let mathml = Xml2Gdome.document_of_xml Misc.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)))