]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_transformations/cexpr2pres.mli
- the mathql interpreter is not helm-dependent any more
[helm.git] / helm / ocaml / cic_transformations / cexpr2pres.mli
1 (* Copyright (C) 2000, 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 (**************************************************************************)
27 (*                                                                        *)
28 (*                           PROJECT HELM                                 *)
29 (*                                                                        *)
30 (*                Andrea Asperti <asperti@cs.unibo.it>                    *)
31 (*                             27/6/2003                                   *)
32 (*                                                                        *)
33 (**************************************************************************)
34
35 val symbol_table : 
36     (string,
37      Content_expressions.cexpr list -> 
38      priority:int ->
39      assoc:bool ->
40      tail:Mpresentation.mpres list ->
41      (string option * string * string) list ->
42      (string option * string * string) list ->
43      Mpresentation.mpres
44     ) Hashtbl.t
45
46 val symbol_table_charcount : 
47     (string,
48      Content_expressions.cexpr list -> 
49      priority:int ->
50      assoc:bool ->
51      tail:Mpresentation.mpres list ->
52      (string option * string * string) list ->
53      (string option * string * string) list ->
54      Mpresentation.mpres
55     ) Hashtbl.t
56
57 val maxsize : int
58 val countterm :  int -> Content_expressions.cexpr -> int 
59 val cexpr2pres : 
60     ?priority:int ->
61     ?assoc:bool ->
62     ?tail:Mpresentation.mpres list ->
63     Content_expressions.cexpr -> 
64     Mpresentation.mpres
65 val cexpr2pres_charcount : 
66     ?priority:int ->
67     ?assoc:bool ->
68     ?tail:Mpresentation.mpres list ->
69     Content_expressions.cexpr -> 
70     Mpresentation.mpres