]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/paramod.mli
New functorialization: paramod is abstracted over a Orderings.Blob, that is like...
[helm.git] / helm / software / components / ng_paramodulation / paramod.mli
index 9a2d397ca471bd0bc418f441638c2f4da9ef467b..13fe56fc5ccb6a5a95e06816ff72e27d5a291ed2 100644 (file)
 
 (* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *)
 
-module Paramod ( B : Terms.Blob ) : 
+module Paramod ( B : Orderings.Blob ) : 
   sig
+    type szsontology = 
+      | Unsatisfiable of (B.t Terms.bag * int * int list) list
+      | GaveUp 
+      | Error of string 
+      | Timeout of int * B.t Terms.bag
     type bag = B.t Terms.bag * int
     val mk_passive : bag -> B.input * B.input -> bag * B.t Terms.unit_clause
     val mk_goal : bag -> B.input * B.input -> bag * B.t Terms.unit_clause
     val paramod : 
-      bag -> g_passives:B.t Terms.unit_clause list -> 
-      passives:B.t Terms.unit_clause list ->
-       (B.t Terms.bag * int * int list) list
+      max_steps:int ->
+      ?timeout:float ->
+      bag -> 
+      g_passives:B.t Terms.unit_clause list -> 
+      passives:B.t Terms.unit_clause list -> szsontology
   end