X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2Fparamod.mli;h=13fe56fc5ccb6a5a95e06816ff72e27d5a291ed2;hb=b68e52f889215ce2c21c3d771f59b2d2057d53c1;hp=69299b13fd1d6e1fa2ed70d22ab213822860a0f8;hpb=8bc5bc0e8375a85736f6a5df317d129d5efa8de4;p=helm.git diff --git a/helm/software/components/ng_paramodulation/paramod.mli b/helm/software/components/ng_paramodulation/paramod.mli index 69299b13f..13fe56fc5 100644 --- a/helm/software/components/ng_paramodulation/paramod.mli +++ b/helm/software/components/ng_paramodulation/paramod.mli @@ -1,5 +1,30 @@ -val nparamod : - #NRstatus.status -> - NCic.metasenv -> NCic.substitution -> NCic.context -> - (NCic.term * NCic.term) -> (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 : 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 : + max_steps:int -> + ?timeout:float -> + bag -> + g_passives:B.t Terms.unit_clause list -> + passives:B.t Terms.unit_clause list -> szsontology + end