From: Stefano Zacchiroli Date: Fri, 21 Feb 2003 13:47:43 +0000 (+0000) Subject: added pp for apply hint X-Git-Tag: V_0_0_4_1~11 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=e09dabab5370f07e5dba36c059a5607d625dd061;p=helm.git added pp for apply hint --- diff --git a/helm/hbugs/common/hbugs_common.ml b/helm/hbugs/common/hbugs_common.ml index 9364eb739..3b19ceec0 100644 --- a/helm/hbugs/common/hbugs_common.ml +++ b/helm/hbugs/common/hbugs_common.ml @@ -27,6 +27,7 @@ *) open Hbugs_types;; +open Printf;; let rec string_of_hint = function | Use_ring_Luke -> "Use Ring, Luke!" @@ -39,6 +40,7 @@ let rec string_of_hint = function | Use_split_Luke -> "Use split, Luke!" | Use_left_Luke -> "Use left, Luke!" | Use_right_Luke -> "Use right, Luke!" + | Use_apply_Luke term -> sprintf "Apply %s, Luke!" term | Hints hints -> String.concat "; " (List.map string_of_hint hints) ;;