]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/grafite_engine/grafiteTypes.ml
1) GrafiteAst.NEval => GrafiteAst.NReduce
[helm.git] / helm / software / components / grafite_engine / grafiteTypes.ml
index 71fd19f94b6d7289d1a7a47336d9ed05dab4914a..66da43c8f36259edc8111f14014a658a42755f4b 100644 (file)
@@ -44,23 +44,18 @@ type proof_status =
       (* Status in which the proof could be while it is being processed by the
       * engine. No status entering/exiting the engine could be in it. *)
 
-(* REMOVE
-module StringMap = Map.Make (String)
-type option_value =
-  | String of string
-  | Int of int
-*)
-(* type options = option_value StringMap.t *)
-(* let no_options = StringMap.empty *)
+type ng_status =
+  | ProofMode of NTacStatus.tac_status
+  | CommandMode of LexiconEngine.status
 
 type status = {
   moo_content_rev: GrafiteMarshal.moo;
   proof_status: proof_status;
-(*   options: options; *)
   objects: UriManager.uri list;
-  coercions: UriManager.uri list;
-  universe:Universe.universe;  
+  coercions: CoercDb.coerc_db;
+  automation_cache:AutomationCache.cache;  
   baseuri: string;
+  ng_status: ng_status;
 }
 
 let get_current_proof status =