X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Focaml%2Fparamodulation%2Futils.mli;h=7814a4b88d3eed6c83e0f57d7e8ff0c0522155e2;hb=5c9e1997848c2f74297a5a243679f4bcb6ae0dc7;hp=71f2fc1b5d5a3adee6f1d2634784b2c3797bb9f1;hpb=a89f7271e79dc7dc81dc868a75125669c8decc16;p=helm.git diff --git a/helm/ocaml/paramodulation/utils.mli b/helm/ocaml/paramodulation/utils.mli index 71f2fc1b5..7814a4b88 100644 --- a/helm/ocaml/paramodulation/utils.mli +++ b/helm/ocaml/paramodulation/utils.mli @@ -5,7 +5,7 @@ type comparison = Lt | Le | Eq | Ge | Gt | Incomparable;; val print_metasenv: Cic.metasenv -> string -val print_subst: Cic.substitution -> string +val print_subst: ?prefix:string -> Cic.substitution -> string val string_of_weight: weight -> string @@ -29,6 +29,8 @@ val symbols_of_term: Cic.term -> int TermMap.t val lpo: Cic.term -> Cic.term -> comparison +val kbo: Cic.term -> Cic.term -> comparison + (** term-ordering function settable by the user *) val compare_terms: (Cic.term -> Cic.term -> comparison) ref @@ -39,3 +41,7 @@ val string_of_sign: equality_sign -> string type pos = Left | Right val string_of_pos: pos -> string + +val compute_equality_weight: Cic.term -> Cic.term -> Cic.term -> int + +val debug_print: string Lazy.t -> unit