]> 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 aa90dc0e0194951ae1f87f711ef3c4994b7d7806..66da43c8f36259edc8111f14014a658a42755f4b 100644 (file)
@@ -44,14 +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. *)
 
+type ng_status =
+  | ProofMode of NTacStatus.tac_status
+  | CommandMode of LexiconEngine.status
+
 type status = {
   moo_content_rev: GrafiteMarshal.moo;
   proof_status: proof_status;
   objects: UriManager.uri list;
   coercions: CoercDb.coerc_db;
-  universe:Universe.universe;  
+  automation_cache:AutomationCache.cache;  
   baseuri: string;
-  ng_status: NTactics.tac_status option;
+  ng_status: ng_status;
 }
 
 let get_current_proof status =