]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_disambiguation/disambiguateTypes.ml
9ab85396987da8c754797b5f9fffcfb81da4760f
[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.tactic TacticAst.tactical
29 type command = term CommandAst.command
30 type script = term CommandAst.Script.script
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 module type Callbacks =
54   sig
55     val interactive_user_uri_choice :
56       selection_mode:[`SINGLE | `MULTIPLE] ->
57       ?ok:string ->
58       ?enable_button_for_non_vars:bool ->
59       title:string -> msg:string -> id:string -> string list -> string list
60     val interactive_interpretation_choice :
61       (string * string) list list -> int list
62     val input_or_locate_uri : title:string -> UriManager.uri
63   end
64
65 let string_of_domain_item = function
66   | Id s -> Printf.sprintf "ID(%s)" s
67   | Symbol (s, i) -> Printf.sprintf "SYMBOL(%s,%d)" s i
68   | Num i -> Printf.sprintf "NUM(instance %d)" i
69
70 let string_of_domain dom =
71   String.concat "; " (List.map string_of_domain_item dom)
72 (*
73 let string_of_domain dom =
74   let buf = Buffer.create 1024 in
75   Domain.iter
76     (fun item -> Buffer.add_string buf (string_of_domain_item item ^ "; "))
77     dom;
78   Buffer.contents buf
79 *)
80