]> matita.cs.unibo.it Git - helm.git/blob - components/cic_disambiguation/disambiguateTypes.ml
Bug fixed: a symbol alias Symb(s,0) now subsumes the case Symb(s,n) for each n.
[helm.git] / components / 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 find k env =
59    match k with
60       Symbol (sym,n) ->
61        (try find k env
62         with Not_found -> find (Symbol (sym,0)) env)
63     | _ -> find k env
64
65   let cons k v env =
66     try
67       let current = find k env in
68       let dsc, _ = v in
69       add k (v :: (List.filter (fun (dsc', _) -> dsc' <> dsc) current)) env
70     with Not_found ->
71       add k [v] env
72
73   let hd list_env =
74     try
75       map List.hd list_env
76     with Failure _ -> assert false
77
78   let fold_flatten f env base =
79     fold
80       (fun k l acc -> List.fold_right (fun v acc -> f k v acc) l acc)
81       env base
82
83 end
84
85 type codomain_item =
86   string *  (* description *)
87   (environment -> string -> Cic.term list -> Cic.term)
88     (* environment, literal number, arguments as needed *)
89
90 and environment = codomain_item Environment.t
91
92 type multiple_environment = codomain_item list Environment.t
93
94
95 (** adds a (name,uri) list l to a disambiguation environment e **)
96 let multiple_env_of_list l e = 
97   List.fold_left
98    (fun e (name,descr,t) -> Environment.cons (Id name) (descr,fun _ _ _ -> t) e)
99    e l
100
101 let env_of_list l e = 
102   List.fold_left
103    (fun e (name,descr,t) -> Environment.add (Id name) (descr,fun _ _ _ -> t) e)
104    e l
105
106 module type Callbacks =
107   sig
108     val interactive_user_uri_choice:
109       selection_mode:[`SINGLE | `MULTIPLE] ->
110       ?ok:string ->
111       ?enable_button_for_non_vars:bool ->
112       title:string -> msg:string -> id:string -> UriManager.uri list ->
113       UriManager.uri list
114     val interactive_interpretation_choice:
115       string -> int ->
116       (Token.flocation list * string * string) list list -> int list
117     val input_or_locate_uri:
118       title:string -> ?id:string -> unit -> UriManager.uri option
119   end
120
121 let string_of_domain_item = function
122   | Id s -> Printf.sprintf "ID(%s)" s
123   | Symbol (s, i) -> Printf.sprintf "SYMBOL(%s,%d)" s i
124   | Num i -> Printf.sprintf "NUM(instance %d)" i
125
126 let string_of_domain dom =
127   String.concat "; " (List.map string_of_domain_item dom)