]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_disambiguation/disambiguateChoices.ml
first moogle template checkin
[helm.git] / helm / ocaml / cic_disambiguation / disambiguateChoices.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 open Printf
27
28 open DisambiguateTypes
29
30 exception Invalid_choice
31 exception Choice_not_found of string
32
33 let symbol_choices = Hashtbl.create 1023
34 let num_choices = ref []
35
36 let add_symbol_choice symbol codomain_item =
37   let current_choices =
38     try
39       Hashtbl.find symbol_choices symbol
40     with Not_found -> []
41   in
42   Hashtbl.replace symbol_choices symbol (codomain_item :: current_choices)
43
44 let add_binary_op symbol dsc appl_head =
45   add_symbol_choice symbol
46     (dsc,
47       (fun env _ args ->
48         let t1, t2 =
49           match args with
50           | [t1; t2] -> t1, t2
51           | _ -> raise Invalid_choice
52         in
53         Cic.Appl [ appl_head; t1; t2 ]))
54
55 let add_unary_op symbol dsc appl_head =
56   add_symbol_choice symbol
57     (dsc,
58       (fun env _ args ->
59         let t = match args with [t] -> t | _ -> raise Invalid_choice in
60         Cic.Appl [ appl_head; t ]))
61
62 let add_num_choice choice = num_choices := choice :: !num_choices
63
64 let lookup_symbol_choices symbol =
65   try
66     Hashtbl.find symbol_choices symbol
67   with Not_found -> []
68
69 let lookup_num_choices () = !num_choices
70
71 let has_description dsc = (fun x -> fst x = dsc)
72
73 let lookup_symbol_by_dsc symb dsc =
74   try
75     List.find (has_description dsc) (Hashtbl.find symbol_choices symb)
76   with Not_found ->
77     raise (Choice_not_found (sprintf "Symbol %s, dsc %s" symb dsc))
78
79 let lookup_num_by_dsc dsc =
80   try
81     List.find (has_description dsc) !num_choices
82   with Not_found -> raise (Choice_not_found ("Num with dsc " ^  dsc))
83
84   (** initial table contents *)
85
86 let _ =
87   add_binary_op "exists" "exists"
88     (Cic.MutInd (HelmLibraryObjects.Logic.ex_URI, 0, []));
89   add_symbol_choice "cast"
90     ("type cast",
91       (fun env _ args ->
92         let t1, t2 =
93           match args with 
94           | [t1; t2] -> t1, t2
95           | _ -> raise Invalid_choice
96         in
97         Cic.Cast (t1, t2)));
98