]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_disambiguation/disambiguateTypes.ml
test branch
[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 (* $Id$ *)
27
28 (*
29 type term = CicNotationPt.term
30 type tactic = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactic
31 type tactical = (term, term, GrafiteAst.reduction, string) GrafiteAst.tactical
32 type script_entry =
33   | Command of tactical
34   | Comment of CicNotationPt.location * string
35 type script = CicNotationPt.location * script_entry list
36 *)
37
38 type domain_item =
39   | Id of string               (* literal *)
40   | Symbol of string * int     (* literal, instance num *)
41   | Num of int                 (* instance num *)
42
43 exception Invalid_choice of string Lazy.t
44
45 module OrderedDomain =
46   struct
47     type t = domain_item
48     let compare = Pervasives.compare
49   end
50
51 (* module Domain = Set.Make (OrderedDomain) *)
52 module Environment =
53 struct
54   module Environment' = Map.Make (OrderedDomain)
55
56   include Environment'
57
58   let cons k v env =
59     try
60       let current = find k env in
61       let dsc, _ = v in
62       add k (v :: (List.filter (fun (dsc', _) -> dsc' <> dsc) current)) env
63     with Not_found ->
64       add k [v] env
65
66   let hd list_env =
67     try
68       map List.hd list_env
69     with Failure _ -> assert false
70
71   let fold_flatten f env base =
72     fold
73       (fun k l acc -> List.fold_right (fun v acc -> f k v acc) l acc)
74       env base
75
76 end
77
78 type codomain_item =
79   string *  (* description *)
80   (environment -> string -> Cic.term list -> Cic.term)
81     (* environment, literal number, arguments as needed *)
82
83 and environment = codomain_item Environment.t
84
85 type multiple_environment = codomain_item list Environment.t
86
87
88 (** adds a (name,uri) list l to a disambiguation environment e **)
89 let multiple_env_of_list l e = 
90   List.fold_left
91    (fun e (name,descr,t) -> Environment.cons (Id name) (descr,fun _ _ _ -> t) e)
92    e l
93
94 let env_of_list l e = 
95   List.fold_left
96    (fun e (name,descr,t) -> Environment.add (Id name) (descr,fun _ _ _ -> t) e)
97    e l
98
99 module type Callbacks =
100   sig
101     val interactive_user_uri_choice:
102       selection_mode:[`SINGLE | `MULTIPLE] ->
103       ?ok:string ->
104       ?enable_button_for_non_vars:bool ->
105       title:string -> msg:string -> id:string -> UriManager.uri list ->
106       UriManager.uri list
107     val interactive_interpretation_choice:
108       (string * string) list list -> int list
109     val input_or_locate_uri:
110       title:string -> ?id:string -> unit -> UriManager.uri
111   end
112
113 let string_of_domain_item = function
114   | Id s -> Printf.sprintf "ID(%s)" s
115   | Symbol (s, i) -> Printf.sprintf "SYMBOL(%s,%d)" s i
116   | Num i -> Printf.sprintf "NUM(instance %d)" i
117
118 let string_of_domain dom =
119   String.concat "; " (List.map string_of_domain_item dom)