]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/ng_refiner/nCicUnifHint.mli
Preparing for 0.5.9 release.
[helm.git] / helm / software / components / ng_refiner / nCicUnifHint.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: nCicRefiner.mli 9227 2008-11-21 16:00:06Z tassi $ *)
13
14 type db
15
16 exception HintNotValid
17
18 class type g_status =
19  object
20   method uhint_db: db
21  end
22
23 class status :
24  object ('self)
25   inherit g_status
26   method set_uhint_db: db -> 'self
27   method set_unifhint_status: #g_status -> 'self
28  end
29
30 val index_hint: 
31   #status as 'status -> NCic.context -> NCic.term -> NCic.term -> int -> 'status
32
33 val add_user_provided_hint :
34   #status as 'status -> NCic.term -> int -> 'status
35
36 val look_for_hint:
37     #status ->
38     NCic.metasenv -> NCic.substitution -> NCic.context -> 
39     NCic.term -> NCic.term -> 
40       (NCic.metasenv * 
41         (NCic.term * NCic.term) * (NCic.term * NCic.term) list) list
42
43 val eq_class_of:
44       #status -> NCic.term -> NCic.term list
45
46 val generate_dot_file: #status -> Format.formatter -> unit