]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/mathql_generator/mQueryGenerator.mli
6081cd02802819a92a06ca3520ff5a156717adeb
[helm.git] / helm / ocaml / mathql_generator / mQueryGenerator.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 (*  AUTOR: Ferruccio Guidi <fguidi@cs.unibo.it>
27  *)
28
29 type uri = string
30 type position = string
31 type depth = string
32 type sort = string 
33
34 type spec = MustObj  of uri list * position list * depth list
35           | MustSort of sort list * position list * depth list
36           | MustRel  of position list * depth list
37           | OnlyObj  of uri list * position list * depth list
38           | OnlySort of sort list * position list * depth list
39           | OnlyRel  of position list * depth list
40           | Universe of position list 
41
42 type builtin_t = MainHypothesis
43                | InHypothesis
44                | MainConclusion
45                | InConclusion
46                | InBody
47                | Set
48                | Prop
49                | Type
50
51 val locate  : string -> MathQL.query
52
53 val compose : spec list -> MathQL.query
54
55 val builtin : builtin_t -> string
56
57 (* interface for the old constraints  ***************************************)
58
59 type old_depth = int option
60  
61 type r_obj = uri * position * old_depth 
62 type r_rel = position * old_depth
63 type r_sort = position * old_depth * sort 
64
65 type must_restrictions = (r_obj list * r_rel list * r_sort list)
66 type only_restrictions =
67  (r_obj list option * r_rel list option * r_sort list option)
68 type universe = position list option
69
70 val query_of_constraints : universe -> must_restrictions -> only_restrictions -> MathQL.query