]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_disambiguation/disambiguateTypes.ml
d01f82ee9e25f24a5656dfdb1696c8c9b8332fb9
[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
30 type domain_item =
31  | Id of string               (* literal *)
32  | Symbol of string * int     (* literal, instance num *)
33  | Num of int                 (* instance num *)
34
35 module OrderedDomain =
36   struct
37     type t = domain_item
38     let compare = Pervasives.compare
39   end
40
41 (* module Domain = Set.Make (OrderedDomain) *)
42 module Environment = Map.Make (OrderedDomain)
43
44 type codomain_item =
45   string *  (* description *)
46   (environment -> string -> Cic.term list -> Cic.term)
47     (* environment, literal number, arguments as needed *)
48
49 and environment = codomain_item Environment.t
50
51 module type Callbacks =
52   sig
53     val interactive_user_uri_choice :
54       selection_mode:[`SINGLE | `MULTIPLE] ->
55       ?ok:string ->
56       ?enable_button_for_non_vars:bool ->
57       title:string -> msg:string -> id:string -> string list -> string list
58     val interactive_interpretation_choice :
59       (string * string) list list -> int list
60     val input_or_locate_uri : title:string -> ?id:string -> unit -> UriManager.uri
61   end
62
63 let string_of_domain_item = function
64   | Id s -> Printf.sprintf "ID(%s)" s
65   | Symbol (s, i) -> Printf.sprintf "SYMBOL(%s,%d)" s i
66   | Num i -> Printf.sprintf "NUM(instance %d)" i
67
68 let string_of_domain dom =
69   String.concat "; " (List.map string_of_domain_item dom)
70 (*
71 let string_of_domain dom =
72   let buf = Buffer.create 1024 in
73   Domain.iter
74     (fun item -> Buffer.add_string buf (string_of_domain_item item ^ "; "))
75     dom;
76   Buffer.contents buf
77 *)
78