X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fcomponents%2Fng_paramodulation%2Fparamod.mli;h=0aa990d52f5c417bd14ccb128773e821e9ed0c9b;hb=38c54dd8e2234836d5f3e8011c478daf7d59fa25;hp=5ba90f943d9bcb49f1f83f78fd7905f2b6f22f5d;hpb=4ae7d510a430a2a6929f973d36b993d528772d64;p=helm.git diff --git a/helm/software/components/ng_paramodulation/paramod.mli b/helm/software/components/ng_paramodulation/paramod.mli index 5ba90f943..0aa990d52 100644 --- a/helm/software/components/ng_paramodulation/paramod.mli +++ b/helm/software/components/ng_paramodulation/paramod.mli @@ -1,4 +1,32 @@ -val nparamod : - 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 type Paramod = + sig + type t + type szsontology = + | Unsatisfiable of (t Terms.bag * int * int list) list + | GaveUp + | Error of string + | Timeout of int * t Terms.bag + val paramod : + useage:bool -> + max_steps:int -> + print_problem:bool -> + ?timeout:float -> + t Terms.foterm * (t Terms.foterm list * t Terms.foterm list) -> + (t Terms.foterm * (t Terms.foterm list * t Terms.foterm list)) list -> szsontology + end + +module Paramod ( B : Orderings.Blob ) : Paramod +with type t = B.t