]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/paramod.mli
First compiling version
[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 type Paramod =
15   sig
16     type t
17     type input
18     type szsontology = 
19       | Unsatisfiable of (t Terms.bag * int * int list) list
20       | GaveUp 
21       | Error of string 
22       | Timeout of int * t Terms.bag
23     type bag = t Terms.bag * int
24     val mk_passive : bag -> input * input -> bag * t Terms.clause
25     val mk_goal : bag -> input * input -> bag * t Terms.clause
26     val paramod : 
27       useage:bool ->
28       max_steps:int ->
29       ?timeout:float ->
30       bag -> 
31       g_passives:t Terms.clause list -> 
32       passives:t Terms.clause list -> szsontology
33   end
34
35 module Paramod ( B : Orderings.Blob ) : Paramod
36 with type t = B.t and type input = B.input