]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/tactics/paramodulation/indexing.mli
1caa5ed41b5b0b46946552800caf04c1fcaf6052
[helm.git] / helm / software / components / tactics / paramodulation / indexing.mli
1 (* Copyright (C) 2005, 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://cs.unibo.it/helm/.
24  *)
25
26 (* $Id$ *)
27
28 module Index :
29   sig
30     module PosEqSet : Set.S 
31       with type elt = Utils.pos * Equality.equality
32       and type t = Equality_indexing.DT.PosEqSet.t
33     type t =
34             Discrimination_tree.Make(Discrimination_tree.CicIndexable)(PosEqSet).t
35   end
36
37 val check_for_duplicates : Cic.metasenv -> string -> unit
38 val index : Index.t -> Equality.equality -> Index.t
39 val remove_index : Index.t -> Equality.equality -> Index.t
40 val in_index : Index.t -> Equality.equality -> bool
41 val empty : Index.t
42 val init_index : unit -> unit
43 val unification :
44   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
45   Index.t ->
46   Equality.equality ->
47   (Subst.substitution * Equality.equality * bool) option
48 val subsumption :
49   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
50   Index.t ->
51   Equality.equality ->
52   (Subst.substitution * Equality.equality * bool) option
53 val unification_all :
54   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
55   Index.t ->
56   Equality.equality ->
57   (Subst.substitution * Equality.equality * bool) list
58 val subsumption_all :
59   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
60   Index.t ->
61   Equality.equality ->
62   (Subst.substitution * Equality.equality * bool) list
63 val superposition_left :
64   Equality.equality_bag ->
65   Cic.conjecture list * Cic.context * CicUniv.universe_graph ->
66   Index.t -> Equality.goal -> int ->
67     int * Equality.goal list
68
69 val superposition_right :
70   Equality.equality_bag ->
71   ?subterms_only:bool ->
72     UriManager.uri ->
73   int ->
74   'a * Cic.context * CicUniv.universe_graph ->
75   Index.t ->
76   Equality.equality ->
77   int * Equality.equality list
78
79 val demod :
80   Equality.equality_bag ->
81   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
82   Index.t ->
83   Equality.goal ->
84   bool * Equality.goal
85 val demodulation_equality :
86   Equality.equality_bag ->
87   ?from:string -> 
88   UriManager.uri ->
89   int ->
90   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
91   Index.t ->
92   Equality.equality -> int * Equality.equality
93 val demodulation_goal :
94   Equality.equality_bag ->
95   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
96   Index.t ->
97   Equality.goal ->
98   bool * Equality.goal
99 val demodulation_theorem :
100   Equality.equality_bag ->
101   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
102   Index.t -> 
103   Cic.term * Cic.term * Cic.metasenv 
104   -> Cic.term * Cic.term
105
106 val check_target:
107   Equality.equality_bag ->
108   Cic.context ->
109     Equality.equality -> string -> unit
110 val solve_demodulating: 
111   Equality.equality_bag ->
112   Cic.metasenv * Cic.context * CicUniv.universe_graph ->
113   Index.t ->
114   Equality.goal ->
115   int ->
116     Equality.goal option
117
118
119     (** profiling *)
120 val get_stats: unit -> string