X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_transformations%2FapplyTransformation.ml;h=6c0b0cddffb39eb14c29ae94409e055ed90cb023;hb=c0f566c371cefef7666a6d68dd1b6c38ca6918ce;hp=784ab89d7b3ae966ac33ccb7c25d4d1d890404cd;hpb=f13dfdf18b6dcf7f9253cbd109e49891fba6fbc0;p=helm.git diff --git a/helm/ocaml/cic_transformations/applyTransformation.ml b/helm/ocaml/cic_transformations/applyTransformation.ml index 784ab89d7..6c0b0cddf 100644 --- a/helm/ocaml/cic_transformations/applyTransformation.ml +++ b/helm/ocaml/cic_transformations/applyTransformation.ml @@ -46,10 +46,10 @@ 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 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,6 +61,7 @@ let mml_of_cic_object uri obj = 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 - (mathml, - (ids_to_terms, ids_to_father_ids, ids_to_conjectures, ids_to_hypotheses)) + (mathml,(annobj, + (ids_to_terms, ids_to_father_ids, ids_to_conjectures, ids_to_hypotheses, + ids_to_inner_sorts,ids_to_inner_types)))