X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FgTopLevel%2FsequentPp.ml;h=df504e75a248f4a8fc5433681a9e90e33dd7adf3;hb=b57c31a1593872c181249135bc05ebd9a72f523b;hp=bffb3030c27cc81b76693b7e1d83c3221697f3e0;hpb=82466efd82082c6101d1c2c0c217f681b37160e8;p=helm.git diff --git a/helm/gTopLevel/sequentPp.ml b/helm/gTopLevel/sequentPp.ml index bffb3030c..df504e75a 100644 --- a/helm/gTopLevel/sequentPp.ml +++ b/helm/gTopLevel/sequentPp.ml @@ -43,6 +43,8 @@ module XmlPp = let ids_to_father_ids = Hashtbl.create 503 in let ids_to_inner_sorts = Hashtbl.create 503 in let ids_to_inner_types = Hashtbl.create 503 in + let ids_to_hypotheses = Hashtbl.create 11 in + let hypotheses_seed = ref 0 in let seed = ref 0 in let acic_of_cic_context = Cic2acic.acic_of_cic_context' seed ids_to_terms ids_to_father_ids @@ -51,20 +53,24 @@ module XmlPp = let final_s,_ = (List.fold_right (fun binding (s,context) -> - match binding with - (Some (n,(Cic.Def t as b)) as entry) - | (Some (n,(Cic.Decl t as b)) as entry) -> - let acic = acic_of_cic_context context t in - [< s ; - X.xml_nempty - (match b with Cic.Decl _ -> "Decl" | Cic.Def _ -> "Def") - ["name",(match n with Cic.Name n -> n | _ -> assert false)] - (Cic2Xml.print_term - (UriManager.uri_of_string "cic:/dummy.con") - ids_to_inner_sorts acic) - >], (entry::context) - | None -> - [< s ; X.xml_empty "Hidden" [] >], (None::context) + let hid = "h" ^ string_of_int !hypotheses_seed in + Hashtbl.add ids_to_hypotheses hid binding ; + incr hypotheses_seed ; + match binding with + (Some (n,(Cic.Def t as b)) as entry) + | (Some (n,(Cic.Decl t as b)) as entry) -> + let acic = acic_of_cic_context context t in + [< s ; + X.xml_nempty + (match b with Cic.Decl _ -> "Decl" | Cic.Def _ -> "Def") + ["name",(match n with Cic.Name n -> n | _ -> assert false); + "id",hid] + (Cic2Xml.print_term + (UriManager.uri_of_string "cic:/dummy.con") + ids_to_inner_sorts acic) + >], (entry::context) + | None -> + [< s ; X.xml_empty "Hidden" [] >], (None::context) ) context ([<>],[]) ) in @@ -75,7 +81,7 @@ module XmlPp = (Cic2Xml.print_term (UriManager.uri_of_string "cic:/dummy.con") ids_to_inner_sorts acic) >], - ids_to_terms,ids_to_father_ids + ids_to_terms,ids_to_father_ids,ids_to_hypotheses ;; end ;;