src/HOL/Tools/Predicate_Compile/pred_compile_aux.ML
changeset 33134 88c9c3460fe7
parent 33132 07efd452a698
child 33139 9c01ee6f8ee9
--- a/src/HOL/Tools/Predicate_Compile/pred_compile_aux.ML	Sat Oct 24 16:55:42 2009 +0200
+++ b/src/HOL/Tools/Predicate_Compile/pred_compile_aux.ML	Sat Oct 24 16:55:42 2009 +0200
@@ -141,7 +141,7 @@
 
   inductify : bool,
   rpred : bool,
-  sizelim : bool
+  depth_limited : bool
 };
 
 fun expected_modes (Options opt) = #expected_modes opt
@@ -152,7 +152,7 @@
 
 fun is_inductify (Options opt) = #inductify opt
 fun is_rpred (Options opt) = #rpred opt
-fun is_sizelim (Options opt) = #sizelim opt
+fun is_depth_limited (Options opt) = #depth_limited opt
 
 val default_options = Options {
   expected_modes = NONE,
@@ -162,7 +162,7 @@
   show_mode_inference = false,
   inductify = false,
   rpred = false,
-  sizelim = false
+  depth_limited = false
 }