1 (* Copyright (C) 2000-2002, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
28 (* It also returns the pretty-printing context! *)
29 let print_context ctx =
33 | Cic.Anonymous -> "_"
36 (fun i (output,context) ->
37 let (newoutput,context') =
39 Some (n,Cic.Decl t) ->
40 print_name n ^ ":" ^ CicPp.pp t context ^ "\n", (Some n)::context
41 | Some (n,Cic.Def (t,None)) ->
42 print_name n ^ ":=" ^ CicPp.pp t context ^ "\n", (Some n)::context
44 "_ ?= _\n", None::context
45 | Some (_,Cic.Def (_,Some _)) -> assert false
47 output^newoutput,context'
51 exception NotImplemented;;
53 let print_sequent (metano,context,goal) =
55 let (output,pretty_printer_context_of_context) = print_context context in
57 "---------------------- ?" ^ string_of_int metano ^ "\n" ^
58 CicPp.pp goal pretty_printer_context_of_context
65 let dtdname = "http://localhost:8081/getdtd?uri=cic.dtd";;
67 let print_sequent metasenv (metano,context,goal) =
69 let ids_to_terms = Hashtbl.create 503 in
70 let ids_to_father_ids = Hashtbl.create 503 in
71 let ids_to_inner_sorts = Hashtbl.create 503 in
72 let ids_to_inner_types = Hashtbl.create 503 in
73 let ids_to_hypotheses = Hashtbl.create 11 in
74 let hypotheses_seed = ref 0 in
75 let sequent_id = "i0" in
76 let seed = ref 1 in (* 'i0' is used for the whole sequent *)
77 let acic_of_cic_context =
78 Cic2acic.acic_of_cic_context' seed ids_to_terms ids_to_father_ids
79 ids_to_inner_sorts ids_to_inner_types metasenv
81 let final_s,_,final_idrefs =
83 (fun binding (s,context,idrefs) ->
84 let hid = "h" ^ string_of_int !hypotheses_seed in
85 Hashtbl.add ids_to_hypotheses hid binding ;
86 incr hypotheses_seed ;
88 (Some (n,(Cic.Def (t,None) as b)) as entry)
89 | (Some (n,(Cic.Decl t as b)) as entry) ->
90 let acic = acic_of_cic_context context idrefs t None in
93 (match b with Cic.Decl _ -> "Decl" | Cic.Def _ -> "Def")
94 [None,"name",(match n with Cic.Name n -> n | _ -> assert false);
96 (Cic2Xml.print_term ~ids_to_inner_sorts acic)
97 >], (entry::context), (hid::idrefs)
99 (* Invariant: "" is never looked up *)
100 [< s ; X.xml_empty "Hidden" [] >], (None::context), ""::idrefs
101 | Some (_,Cic.Def (_,Some _)) -> assert false
102 ) context ([<>],[],[])
105 let acic = acic_of_cic_context context final_idrefs goal None in
106 [< X.xml_cdata "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n" ;
107 X.xml_cdata ("<!DOCTYPE Sequent SYSTEM \"" ^ dtdname ^ "\">\n");
108 X.xml_nempty "Sequent"
109 [None,"no",string_of_int metano;None,"id",sequent_id]
111 Xml.xml_nempty "Goal" []
112 (Cic2Xml.print_term ~ids_to_inner_sorts acic)
115 ids_to_terms,ids_to_father_ids,ids_to_hypotheses