X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2Fparamod.mli;h=8376b256ba6adf614c498f9964ee50de4fb46f3d;hb=bebc917ebff72c2e235cb3062a4c94f10a9aab27;hp=9a2d397ca471bd0bc418f441638c2f4da9ef467b;hpb=f7bfbdc706a75256c0e9b15ecc242175f562eb71;p=helm.git diff --git a/helm/software/components/ng_paramodulation/paramod.mli b/helm/software/components/ng_paramodulation/paramod.mli index 9a2d397ca..8376b256b 100644 --- a/helm/software/components/ng_paramodulation/paramod.mli +++ b/helm/software/components/ng_paramodulation/paramod.mli @@ -11,13 +11,26 @@ (* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *) -module Paramod ( B : Terms.Blob ) : +module type Paramod = sig - 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 + type t + type input + 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 mk_passive : bag -> input * input -> bag * t Terms.clause + val mk_goal : bag -> input * input -> bag * t Terms.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 + useage:bool -> + max_steps:int -> + ?timeout:float -> + bag -> + g_passives:t Terms.clause list -> + passives:t Terms.clause list -> szsontology end + +module Paramod ( B : Orderings.Blob ) : Paramod +with type t = B.t and type input = B.input