]> matita.cs.unibo.it Git - helm.git/blob - matitaB/components/ng_paramodulation/nCicParamod.mli
b46d0ade0d0b650764322e8d73d2023f1e5a65de
[helm.git] / matitaB / 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   #NCicCoercion.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: 
23   #NCicCoercion.status ->
24   NCic.metasenv -> 
25   NCic.substitution -> 
26   NCic.context -> 
27   state -> 
28   NCic.term -> 
29   NCic.term -> 
30   state
31 val index_obj: #NCicEnvironment.status -> state -> NUri.uri -> state
32 val is_equation:
33  #NCicEnvironment.status -> NCic.metasenv -> NCic.substitution -> NCic.context ->
34   NCic.term -> bool
35 val paramod : 
36   #NCicCoercion.status ->
37   NCic.metasenv -> NCic.substitution -> NCic.context ->
38   state -> 
39   (NCic.term * NCic.term) -> 
40   (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list
41 val fast_eq_check : 
42   #NCicCoercion.status ->
43   NCic.metasenv -> NCic.substitution -> NCic.context ->
44   state -> 
45   (NCic.term * NCic.term) -> 
46   (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list
47 val demod : 
48   #NCicCoercion.status ->
49   NCic.metasenv -> NCic.substitution -> NCic.context ->
50   state -> 
51   (NCic.term * NCic.term) -> 
52   (NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list