1 (* Copyright (C) 2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
28 module type EqualityIndex =
30 module PosEqSet : Set.S with type elt = Utils.pos * Inference.equality
31 val arities : (Cic.term, int) Hashtbl.t
33 type t = Discrimination_tree.DiscriminationTreeIndexing(PosEqSet).t
35 val retrieve_generalizations : t -> key -> PosEqSet.t
36 val retrieve_unifiables : t -> key -> PosEqSet.t
37 val init_index : unit -> unit
38 val remove_index : t -> Inference.equality -> t
39 val index : t -> Inference.equality -> t
40 val in_index : t -> Inference.equality -> bool
45 module OrderedPosEquality = struct
46 type t = Utils.pos * Inference.equality
47 let compare = Pervasives.compare
50 module PosEqSet = Set.Make(OrderedPosEquality);;
52 include Discrimination_tree.DiscriminationTreeIndexing(PosEqSet)
55 (* DISCRIMINATION TREES *)
57 Hashtbl.clear arities;
60 let remove_index tree equality =
61 let _, _, (_, l, r, ordering), _ = equality in
63 | Utils.Gt -> remove_index tree l (Utils.Left, equality)
64 | Utils.Lt -> remove_index tree r (Utils.Right, equality)
66 let tree = remove_index tree r (Utils.Right, equality) in
67 remove_index tree l (Utils.Left, equality)
69 let index tree equality =
70 let _, _, (_, l, r, ordering), _ = equality in
72 | Utils.Gt -> index tree l (Utils.Left, equality)
73 | Utils.Lt -> index tree r (Utils.Right, equality)
75 let tree = index tree r (Utils.Right, equality) in
76 index tree l (Utils.Left, equality)
79 let in_index tree equality =
80 let _, _, (_, l, r, ordering), _ = equality in
81 let meta_convertibility (pos,equality') =
82 Inference.meta_convertibility_eq equality equality'
84 in_index tree l meta_convertibility || in_index tree r meta_convertibility
90 module OrderedPosEquality = struct
91 type t = Utils.pos * Inference.equality
92 let compare = Pervasives.compare
95 module PosEqSet = Set.Make(OrderedPosEquality);;
97 include Discrimination_tree.DiscriminationTreeIndexing(PosEqSet)
100 (* DISCRIMINATION TREES *)
102 Hashtbl.clear arities;
105 let remove_index tree equality =
106 let _, _, (_, l, r, ordering), _ = equality in
108 | Utils.Gt -> remove_index tree l (Utils.Left, equality)
109 | Utils.Lt -> remove_index tree r (Utils.Right, equality)
111 let tree = remove_index tree r (Utils.Right, equality) in
112 remove_index tree l (Utils.Left, equality)
114 let index tree equality =
115 let _, _, (_, l, r, ordering), _ = equality in
117 | Utils.Gt -> index tree l (Utils.Left, equality)
118 | Utils.Lt -> index tree r (Utils.Right, equality)
120 let tree = index tree r (Utils.Right, equality) in
121 index tree l (Utils.Left, equality)
124 let in_index tree equality =
125 let _, _, (_, l, r, ordering), _ = equality in
126 let meta_convertibility (pos,equality') =
127 Inference.meta_convertibility_eq equality equality'
129 in_index tree l meta_convertibility || in_index tree r meta_convertibility