]> matita.cs.unibo.it Git - helm.git/blob - matita/components/disambiguation/disambiguateTypes.mli
.depend{.opt} files changed
[helm.git] / matita / 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 'a expected_type = [ `XTNone       (* unknown *)
27                         | `XTSome of 'a (* the given term *) 
28                         | `XTSort       (* any sort *)
29                         | `XTInd        (* any (co)inductive type *)
30                         ]
31
32 type domain_item =
33  | Id of string               (* literal *)
34  | Symbol of string * int     (* literal, instance num *)
35  | Num of int                 (* instance num *)
36
37 (* module Domain:      Set.S with type elt = domain_item *)
38 module Environment:
39 sig
40   include Map.S with type key = domain_item
41   val cons: ('b -> 'a) -> domain_item -> 'b -> 'b list t -> 'b list t
42 end
43
44   (** to be raised when a choice is invalid due to some given parameter (e.g.
45    * wrong number of Cic.term arguments received) *)
46 exception Invalid_choice of (Stdpp.location * string) Lazy.t
47
48 type 'term codomain_item =
49   string *  (* description *)
50    [`Num_interp of string -> 'term
51    |`Sym_interp of 'term list -> 'term]
52
53 type interactive_user_uri_choice_type =
54   selection_mode:[`SINGLE | `MULTIPLE] ->
55   ?ok:string ->
56   ?enable_button_for_non_vars:bool ->
57   title:string -> msg:string -> id:string -> NReference.reference list ->
58    NReference.reference list
59
60 type interactive_interpretation_choice_type = string -> int ->
61   (Stdpp.location list * string * string) list list -> int list
62
63 type input_or_locate_uri_type = 
64   title:string -> ?id:string -> unit -> NReference.reference option
65
66 val string_of_domain_item: domain_item -> string