]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_refiner/nRstatus.mli
Objects are now used to represent also the tactic status.
[helm.git] / helm / software / components / ng_refiner / nRstatus.mli
index 6cf9ddd4fa9c136b77ff8c4cc14b771e55a06880..7fde1b74733c5be2348432daf060eb5ce29a0a31 100644 (file)
 
 (* $Id: nCicRefiner.ml 9802 2009-05-25 15:39:26Z tassi $ *)
 
-type refiner_status = {
-        coerc_db : NCicCoercion.db;
-        uhint_db : NCicUnifHint.db;
-        library_db : NCicLibrary.timestamp;
-        dump: refiner_status -> refiner_status
-}
+class status :
+ object ('self)
+  inherit NCicUnifHint.status
+  inherit NCicCoercion.status
+  inherit NCicLibrary.status
+  method set_rstatus: status -> 'self
+ end
+
+module Serializer:
+ sig
+  include NCicLibrary.Serializer with type status = status 
+  val require: baseuri:NUri.uri -> (#status as 'status) -> 'status
+ end
+
+class dumpable_status :
+ object ('self)
+  inherit status
+  method dump: Serializer.obj list
+  method set_dump: Serializer.obj list -> 'self
+  method set_dumpable_status: dumpable_status -> 'self
+ end