]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_paramodulation/nCicParamod.mli
96eeb71aeda6d8eb2fbfb13e8c1fc017c044702e
[helm.git] / helm / software / components / ng_paramodulation / nCicParamod.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 val nparamod :
15   #NRstatus.status ->
16   NCic.metasenv -> NCic.substitution -> NCic.context -> 
17     (NCic.term * NCic.term) -> (NCic.term * NCic.term) list ->
18      (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list
19
20 type state 
21 val empty_state: state
22 val forward_infer_step: state -> NCic.term -> NCic.term -> state
23 val index_obj: state -> NUri.uri -> state
24 val is_equation: NCic.metasenv ->
25            NCic.substitution -> NCic.context -> NCic.term -> bool
26 val paramod : 
27   #NRstatus.status ->
28   NCic.metasenv -> NCic.substitution -> NCic.context ->
29   state -> 
30   (NCic.term * NCic.term) -> 
31   (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list
32 val fast_eq_check : 
33   #NRstatus.status ->
34   NCic.metasenv -> NCic.substitution -> NCic.context ->
35   state -> 
36   (NCic.term * NCic.term) -> 
37   (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list
38 val demod : 
39   #NRstatus.status ->
40   NCic.metasenv -> NCic.substitution -> NCic.context ->
41   state -> 
42   (NCic.term * NCic.term) -> 
43   (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list