]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_paramodulation/paramod.mli
Exported forward_inference_step
[helm.git] / helm / software / components / ng_paramodulation / paramod.mli
index 9cffd9d2889af4958d8dc8254ce1af33e31dc18d..b195e80c945221e4f942fd0bf77c1a72987e6b02 100644 (file)
@@ -15,14 +15,21 @@ module type Paramod =
   sig
     type t
     type input
+    type state
     type szsontology = 
       | Unsatisfiable of (t Terms.bag * int * int list) list
       | GaveUp 
       | Error of string 
       | Timeout of int * t Terms.bag
     type bag = t Terms.bag * int
+    val empty_state : state
     val mk_passive : bag -> input * input -> bag * t Terms.unit_clause
     val mk_goal : bag -> input * input -> bag * t Terms.unit_clause
+    val forward_infer_step :       
+      state ->
+      t Terms.unit_clause ->
+      int ->
+      state 
     val paramod : 
       useage:bool ->
       max_steps:int ->