]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/grafite_engine/grafiteTypes.mli
- non_punctuational_tacticals ported to NG
[helm.git] / helm / software / components / grafite_engine / grafiteTypes.mli
index 95f65f3601c84d63ca53b533d57700a1da7623f7..e75c8aa3c565913032cb096127693052380df6c5 100644 (file)
@@ -42,13 +42,18 @@ type proof_status =
   | Proof of ProofEngineTypes.proof
   | Intermediate of Cic.metasenv
 
+type ng_status =
+  | ProofMode of NTacStatus.tac_status
+  | CommandMode of LexiconEngine.status
+
 type status = {
   moo_content_rev: GrafiteMarshal.moo;
-  proof_status: proof_status;                             (** logical status *)
-  objects: UriManager.uri list;  (** in-scope objects *)
+  proof_status: proof_status;
+  objects: UriManager.uri list;
   coercions: CoercDb.coerc_db;
-  universe:Universe.universe;  (** universe of terms used by auto *)
+  automation_cache:AutomationCache.cache;  
   baseuri: string;
+  ng_status: ng_status;
 }
 
 val dump_status : status -> unit