]> matita.cs.unibo.it Git - helm.git/blob - components/content_pres/content2Procedural.ml
66a4370f36eca1e79ff702e17a3bb59b3b456e32
[helm.git] / components / content_pres / content2Procedural.ml
1 (* Copyright (C) 2003-2005, HELM Team.
2  * 
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.
6  * 
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.
11  * 
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.
16  *
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,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 module H = HExtlib
27 module C = Content
28 module G = GrafiteAst
29 module N = CicNotationPt
30
31 (* grafite ast constructors *************************************************)
32
33 let floc = H.dummy_floc
34
35 let mk_note str = G.Comment (floc, G.Note (floc, str))
36
37 let mk_theorem name t = 
38    let obj = N.Theorem (`Theorem, name, t, None) in
39    G.Executable (floc, G.Command (floc, G.Obj (floc, obj)))
40
41 let mk_tactic tactic =
42    G.Executable (floc, G.Tactical (floc, G.Tactic (floc, tactic), None))
43
44 let mk_exact t =
45    let tactic = G.Exact (floc, t) in
46    mk_tactic tactic
47
48 (* interface functions ******************************************************)
49
50 let content2procedural ~ids_to_inner_sorts prefix (_, params, xmenv, obj) = 
51    if List.length params > 0 || xmenv <> None then assert false;
52    match obj with
53       | `Def (C.Const, t, `Proof {
54            C.proof_name = Some name; C.proof_context = []; 
55            C.proof_apply_context = []; C.proof_conclude = {
56               C.conclude_conclusion = Some b
57            }
58         }) ->   
59         [mk_theorem name t; mk_exact b]
60       | _ -> assert false