]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_disambiguation/disambiguateTypes.ml
Big commit and major code clean-up:
[helm.git] / helm / ocaml / cic_disambiguation / disambiguateTypes.ml
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 term = CicAst.term
27 type tactic = (term, string) TacticAst.tactic
28 type tactical = (term, string) TacticAst.tactical
29 type script_entry = Command of tactical | Comment of CicAst.location * string
30 type script = CicAst.location * script_entry list
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 OrderedDomain =
38   struct
39     type t = domain_item
40     let compare = Pervasives.compare
41   end
42
43 (* module Domain = Set.Make (OrderedDomain) *)
44 module Environment = Map.Make (OrderedDomain)
45
46 type codomain_item =
47   string *  (* description *)
48   (environment -> string -> Cic.term list -> Cic.term)
49     (* environment, literal number, arguments as needed *)
50
51 and environment = codomain_item Environment.t
52
53 (** adds a (name,uri) list l to a disambiguation environment e **)
54 let env_of_list l e = 
55   List.fold_left
56    (fun e (name,descr,t) -> Environment.add (Id name) (descr,fun _ _ _ -> t) e)
57    e l
58
59 module type Callbacks =
60   sig
61     val interactive_user_uri_choice:
62       selection_mode:[`SINGLE | `MULTIPLE] ->
63       ?ok:string ->
64       ?enable_button_for_non_vars:bool ->
65       title:string -> msg:string -> id:string -> string list -> string list
66     val interactive_interpretation_choice:
67       (string * string) list list -> int list
68     val input_or_locate_uri:
69       title:string -> ?id:string -> unit -> UriManager.uri
70   end
71
72 let string_of_domain_item = function
73   | Id s -> Printf.sprintf "ID(%s)" s
74   | Symbol (s, i) -> Printf.sprintf "SYMBOL(%s,%d)" s i
75   | Num i -> Printf.sprintf "NUM(instance %d)" i
76
77 let string_of_domain dom =
78   String.concat "; " (List.map string_of_domain_item dom)
79
80 let empty_environment = Environment.empty
81