]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitaTypes.ml
Added new target "make tests" for regression testing.
[helm.git] / helm / matita / matitaTypes.ml
index f5ec78ee00c33c4ee29f94f1038b069d4de442aa..800ae1c7e2c569bc1cb604c7ae5a32d5df16b9fd 100644 (file)
@@ -61,7 +61,6 @@ type status = {
   aliases: DisambiguateTypes.environment;   (** disambiguation aliases *)
   proof_status: proof_status;
   options: options;
-  coercions: CoercGraph.coercions;
   objects: (UriManager.uri * string) list;
     (** in-scope objects, with their paths *)
 }
@@ -86,11 +85,6 @@ let dump_status status =
     in
     MatitaLog.message (k ^ "::=" ^ v)) status.options;
   MatitaLog.message "status.coercions\n";
-  List.iter 
-    (fun (u1,u2,u3) -> MatitaLog.message
-     ((UriManager.string_of_uri u1) ^
-     (UriManager.string_of_uri u2) ^
-     (UriManager.string_of_uri u3))) status.coercions; 
   MatitaLog.message "status.objects:\n";
   List.iter 
     (fun (u,_) -> 
@@ -167,7 +161,7 @@ let string_of_entry = function
   | `Check _ -> "check:"
   | `Cic (_, _) -> "term:"
   | `Dir uri | `Uri uri -> uri
-  | `Whelp (query, _) -> sprintf "whelp:%s" query
+  | `Whelp (query, _) -> query
 
 class type mathViewer =
   object