diff -r 2eb7dfcf3bc3 -r 88c9c3460fe7 src/HOL/Tools/Predicate_Compile/pred_compile_aux.ML --- 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 }