]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/index.mli
Release 0.5.9.
[helm.git] / helm / software / components / ng_paramodulation / index.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$ *)
13
14 module Index (B : Orderings.Blob) : 
15   sig
16     module ClauseSet : Set.S with 
17       type elt = Terms.direction * B.t Terms.unit_clause
18
19     module FotermIndexable : Discrimination_tree.Indexable with 
20       type constant_name = B.t and
21       type input = B.t Terms.foterm 
22
23     module DT : Discrimination_tree.DiscriminationTree with 
24       type constant_name = B.t and 
25       type input = B.t Terms.foterm and 
26       type data = ClauseSet.elt and 
27       type dataset = ClauseSet.t
28     
29     val index_unit_clause :
30           int -> DT.t -> B.t Terms.unit_clause -> DT.t 
31
32     type active_set = B.t Terms.unit_clause list * DT.t
33
34   end