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