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