]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_refiner/nCicUnifHint.mli
Bugfix in tipify: a metavariable was set to type without sortifying its type.
[helm.git] / helm / software / components / ng_refiner / nCicUnifHint.mli
index f7257d8f8472c03978429f8d34700abc88e65421..421ef9ffb66e0d48672e3b2e01a4ecd1ab24d147 100644 (file)
 
 type db
 
+exception HintNotValid
+
+class type g_status =
+ object
+  method uhint_db: db
+ end
+
 class status :
  object ('self)
-  method uhint_db: db
+  inherit g_status
   method set_uhint_db: db -> 'self
+  method set_unifhint_status: #g_status -> 'self
  end
 
 val index_hint: 
@@ -31,3 +39,8 @@ val look_for_hint:
     NCic.term -> NCic.term -> 
       (NCic.metasenv * 
         (NCic.term * NCic.term) * (NCic.term * NCic.term) list) list
+
+val eq_class_of:
+      #status -> NCic.term -> NCic.term list
+
+val generate_dot_file: #status -> Format.formatter -> unit