--- a/src/Pure/meta_simplifier.ML Thu Sep 29 15:50:45 2005 +0200
+++ b/src/Pure/meta_simplifier.ML Thu Sep 29 15:50:46 2005 +0200
@@ -81,6 +81,7 @@
-> (theory -> simpset -> term -> thm option) -> simproc
val simproc: theory -> string -> string list
-> (theory -> simpset -> term -> thm option) -> simproc
+ val debug_bounds: bool ref
val inherit_bounds: simpset -> simpset -> simpset
val rewrite_cterm: bool * bool * bool ->
(simpset -> thm -> thm option) -> simpset -> cterm -> thm
@@ -1122,7 +1123,7 @@
| _ => I) (term_of ct) [];
in
if null bs then ()
- else print_term true ("Simplifier: term contains loose bounds: " ^ commas bs) ss
+ else print_term true ("Simplifier: term contains loose bounds: " ^ commas_quote bs) ss
(Thm.theory_of_cterm ct) (Thm.term_of ct)
end);
--- a/src/Pure/simplifier.ML Thu Sep 29 15:50:45 2005 +0200
+++ b/src/Pure/simplifier.ML Thu Sep 29 15:50:46 2005 +0200
@@ -53,6 +53,7 @@
sig
include BASIC_SIMPLIFIER
val clear_ss: simpset -> simpset
+ val debug_bounds: bool ref
val inherit_bounds: simpset -> simpset -> simpset
val simproc_i: theory -> string -> term list
-> (theory -> simpset -> term -> thm option) -> simproc