]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/foUnif.mli
New functorialization: paramod is abstracted over a Orderings.Blob, that is like...
[helm.git] / helm / software / components / ng_paramodulation / foUnif.mli
index fc682c5fc102849d4932097f73aa9f0e0d02f52e..87b57ae70d74b979e83e021cfbae75a95941951e 100644 (file)
 
 exception UnificationFailure of string Lazy.t;;
 
-module Founif (B : Terms.Blob) : 
+module Founif (B : Orderings.Blob) : 
   sig
 
-   val unification: 
+   val unification:
      (* global varlist for both terms t1 and t2 *)
      Terms.varlist -> 
      (* locked variables: if equal to FV(t2) we match t1 with t2*)
      Terms.varlist -> 
      B.t Terms.foterm ->
      B.t Terms.foterm ->
-        B.t Terms.substitution * Terms.varlist
+        B.t Terms.substitution 
+
+
+   val alpha_eq:
+     B.t Terms.foterm ->
+     B.t Terms.foterm ->
+     B.t Terms.substitution
 
   end