X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2Fparamod.mli;h=c8ba6cad9afc94898d0bc68ad061b3db438aa59f;hb=138af8ad1b6a6382606e367cc906f4232fa626ff;hp=78bea9934c540d3936d4a73ae4a09ac03dfc5658;hpb=637114791874df9ebc4e0f0936513c71886a913f;p=helm.git diff --git a/helm/software/components/ng_paramodulation/paramod.mli b/helm/software/components/ng_paramodulation/paramod.mli index 78bea9934..c8ba6cad9 100644 --- a/helm/software/components/ng_paramodulation/paramod.mli +++ b/helm/software/components/ng_paramodulation/paramod.mli @@ -1,4 +1,26 @@ -val nparamod : - NCic.metasenv -> NCic.substitution -> NCic.context -> - NCic.term -> NCic.term list -> - unit +(* + ||M|| This file is part of HELM, an Hypertextual, Electronic + ||A|| Library of Mathematics, developed at the Computer Science + ||T|| Department, University of Bologna, Italy. + ||I|| + ||T|| HELM is free software; you can redistribute it and/or + ||A|| modify it under the terms of the GNU General Public License + \ / version 2 or (at your option) any later version. + \ / This software is distributed as is, NO WARRANTY. + V_______________________________________________________________ *) + +(* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *) + +module Paramod ( B : Terms.Blob ) : + 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 + val paramod : + max_steps:int -> + ?timeout:float -> + bag -> + g_passives:B.t Terms.unit_clause list -> + passives:B.t Terms.unit_clause list -> + (B.t Terms.bag * int * int list) list + end