From: Enrico Tassi Date: Tue, 7 Jun 2005 16:43:33 +0000 (+0000) Subject: removed coercions from status X-Git-Tag: PRE_INDEX_1~52 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=d0582b9f0d2cf4770566da006019c657e23a3c85;p=helm.git removed coercions from status --- diff --git a/helm/matita/matitaTypes.ml b/helm/matita/matitaTypes.ml index 9b100ca71..800ae1c7e 100644 --- a/helm/matita/matitaTypes.ml +++ b/helm/matita/matitaTypes.ml @@ -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,_) ->