src/Pure/meta_simplifier.ML
changeset 36001 992839c4be90
parent 35995 26e820d27e0a
child 36006 7ddc33baf959
--- a/src/Pure/meta_simplifier.ML	Sun Mar 28 16:13:29 2010 +0200
+++ b/src/Pure/meta_simplifier.ML	Sun Mar 28 16:59:06 2010 +0200
@@ -251,7 +251,7 @@
 
 (* simp depth *)
 
-val simp_depth_limit_value = Config.declare false "simp_depth_limit" (Config.Int 100);
+val simp_depth_limit_value = Config.declare false "simp_depth_limit" (K (Config.Int 100));
 val simp_depth_limit = Config.int simp_depth_limit_value;
 
 val trace_simp_depth_limit = Unsynchronized.ref 1;
@@ -274,10 +274,10 @@
 
 exception SIMPLIFIER of string * thm;
 
-val debug_simp_value = Config.declare false "debug_simp" (Config.Bool false);
+val debug_simp_value = Config.declare false "debug_simp" (K (Config.Bool false));
 val debug_simp = Config.bool debug_simp_value;
 
-val trace_simp_value = Config.declare false "trace_simp" (Config.Bool false);
+val trace_simp_value = Config.declare false "trace_simp" (K (Config.Bool false));
 val trace_simp = Config.bool trace_simp_value;
 val trace_simp_ref = Unsynchronized.ref false;