]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/paramod.mli
timeouts are passed as arguments, so that tptpprover can
[helm.git] / helm / software / components / ng_paramodulation / paramod.mli
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 (* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *)
13
14 module Paramod ( B : Terms.Blob ) : 
15   sig
16     type bag = B.t Terms.bag * int
17     val mk_passive : bag -> B.input * B.input -> bag * B.t Terms.unit_clause
18     val mk_goal : bag -> B.input * B.input -> bag * B.t Terms.unit_clause
19     val paramod : 
20       max_steps:int ->
21       ?timeout:float ->
22       bag -> 
23       g_passives:B.t Terms.unit_clause list -> 
24       passives:B.t Terms.unit_clause list ->
25        (B.t Terms.bag * int * int list) list
26   end