]> matita.cs.unibo.it Git - helm.git/blob - matitaB/components/disambiguation/disambiguateTypes.mli
update in ground_2 static_2 basic_2
[helm.git] / matitaB / components / disambiguation / disambiguateTypes.mli
1 (* Copyright (C) 2004, 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://helm.cs.unibo.it/
24  *)
25 (*
26 type domain_item =
27  | Id of (string * string option)              (* literal, opt. uri *)
28  | Symbol of string * (string option * string) option (* literal, opt. (uri,interp.) *)
29  | Num of (string option * string) option             (* opt. uri, interpretation *)
30  *)
31 type domain_item =
32  | Id of string              (* literal *)
33  | Symbol of string (* literal *)
34  | Num         
35
36 (* module Domain:      Set.S with type elt = domain_item *)
37 module Environment:
38 sig
39   include Map.S with type key = domain_item 
40   val cons: ('b -> 'a) -> domain_item -> 'b -> 'b list t -> 'b list t
41 end
42
43 module InterprEnv:
44 sig
45   include Map.S with type key = Stdpp.location 
46 end
47
48 (** to be raised when a choice is invalid due to some given parameter (e.g.
49    * wrong number of Cic.term arguments received) *)
50 exception Invalid_choice of (Stdpp.location * string) Lazy.t
51
52 type 'term codomain_item =
53   string *  (* description *)
54    [`Num_interp of string -> 'term
55    |`Sym_interp of 'term list -> 'term]
56
57 type interactive_user_uri_choice_type =
58   selection_mode:[`SINGLE | `MULTIPLE] ->
59   ?ok:string ->
60   ?enable_button_for_non_vars:bool ->
61   title:string -> msg:string -> id:string -> NReference.reference list ->
62    NReference.reference list
63
64 type interactive_interpretation_choice_type = string -> int ->
65   (Stdpp.location list * string * string) list list -> int list
66
67 type interactive_ast_choice_type = string list -> int
68
69 type input_or_locate_uri_type = 
70   title:string -> ?id:string -> unit -> NReference.reference option
71
72 val string_of_domain_item: domain_item -> string