]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/tactics/paramodulation/utils.mli
used the new metadataConstraint function to retrieve equalities from the library
[helm.git] / helm / software / components / tactics / paramodulation / utils.mli
index 9dc6501d796d296d4797d67704b924f5778da45a..c64eacfd61f3c3364df483305e51624d04e96aab 100644 (file)
@@ -34,6 +34,8 @@ type weight = int * (int * int) list;;
 
 type comparison = Lt | Le | Eq | Ge | Gt | Incomparable;;
 
+type environment = Cic.metasenv * Cic.context * CicUniv.universe_graph
+
 val print_metasenv: Cic.metasenv -> string
 
 val print_subst: ?prefix:string -> Cic.substitution -> string
@@ -81,12 +83,10 @@ type pos = Left | Right
 
 val string_of_pos: pos -> string
 
-val compute_equality_weight: Cic.term -> Cic.term -> Cic.term -> int
+val compute_equality_weight: Cic.term * Cic.term * Cic.term * comparison -> int
 
 val debug_print: string Lazy.t -> unit
 
-val eq_ind_URI: unit -> UriManager.uri
-val eq_ind_r_URI: unit -> UriManager.uri
-val sym_eq_URI: unit -> UriManager.uri
-val eq_XURI: unit -> UriManager.uri
-val trans_eq_URI: unit -> UriManager.uri
+val metas_of_term: Cic.term -> int list
+
+val remove_local_context: Cic.term -> Cic.term