]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/disambiguation/disambiguateTypes.mli
The aliases and multi_aliases in the lexicon status are now
[helm.git] / helm / software / 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               (* literal *)
28  | Symbol of string * int     (* literal, instance num *)
29  | Num of int                 (* instance num *)
30
31 (* module Domain:      Set.S with type elt = domain_item *)
32 module Environment:
33 sig
34   include Map.S with type key = domain_item
35   val cons: ('b -> 'a) -> domain_item -> 'b -> 'b list t -> 'b list t
36   val hd: 'a list t -> 'a t
37
38     (** last alias cons-ed will be processed first *)
39   val fold_flatten: (domain_item -> 'a -> 'b -> 'b) -> 'a list t -> 'b -> 'b
40 end
41
42   (** to be raised when a choice is invalid due to some given parameter (e.g.
43    * wrong number of Cic.term arguments received) *)
44 exception Invalid_choice of (Stdpp.location * string) Lazy.t
45
46 type 'term codomain_item =
47   string *  (* description *)
48    [`Num_interp of string -> 'term
49    |`Sym_interp of 'term list -> 'term]
50
51 and 'term environment = 'term codomain_item Environment.t
52
53 type 'term multiple_environment =
54  'term codomain_item list Environment.t
55
56 type interactive_user_uri_choice_type =
57   selection_mode:[`SINGLE | `MULTIPLE] ->
58   ?ok:string ->
59   ?enable_button_for_non_vars:bool ->
60   title:string -> msg:string -> id:string -> UriManager.uri list ->
61    UriManager.uri list
62
63 type interactive_interpretation_choice_type = string -> int ->
64   (Stdpp.location list * string * string) list list -> int list
65
66 type input_or_locate_uri_type = 
67   title:string -> ?id:string -> unit -> UriManager.uri option
68
69 module type Callbacks =
70   sig
71
72     val interactive_user_uri_choice : interactive_user_uri_choice_type
73
74     val interactive_interpretation_choice : 
75        interactive_interpretation_choice_type
76
77     val input_or_locate_uri: input_or_locate_uri_type
78   end
79
80 val string_of_domain_item: domain_item -> string
81 val string_of_domain: domain_item list -> string
82
83 (** {3 type shortands} *)
84
85 (*
86 type term = CicNotationPt.term
87 type tactic = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactic
88 type tactical = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactical
89
90 type script_entry =
91   | Command of tactical
92   | Comment of CicNotationPt.location * string
93 type script = CicNotationPt.location * script_entry list
94 *)