]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/founif.mli
more functors
[helm.git] / helm / software / components / ng_paramodulation / founif.mli
index 55f15e65647a8c80468ec43f3682d396adc9497f..fc682c5fc102849d4932097f73aa9f0e0d02f52e 100644 (file)
@@ -16,22 +16,13 @@ exception UnificationFailure of string Lazy.t;;
 module Founif (B : Terms.Blob) : 
   sig
 
-val unification: 
-  Terms.varlist -> (* global varlist for both terms t1 and t2 *)
-  Terms.varlist -> (* locked variables: if equal to FV(t2) we match t1 with t2*)
-  B.t Terms.foterm ->
-  B.t Terms.foterm ->
-     B.t Terms.substitution * Terms.varlist
-
-(*
-val unification: 
-  Terms.varlist -> 'a Terms.foterm -> 'a Terms.foterm -> 
-   'a Terms.substitution * Terms.varlist
-
-val matching:
-  Terms.varlist -> Terms.varlist -> 'a Terms.foterm -> 'a Terms.foterm -> 
-   'a Terms.substitution * Terms.varlist
-
-*)
+   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
 
   end