# HG changeset patch # User bulwahn # Date 1313661977 -7200 # Node ID 360fcbb1aa0193f63996e1a08a4cf6e160d2d02b # Parent 971d1be5d5ce531cbe36bf0b10bca4225e2356b6 activating narrowing-based quickcheck by default diff -r 971d1be5d5ce -r 360fcbb1aa01 src/HOL/Tools/Quickcheck/narrowing_generators.ML --- a/src/HOL/Tools/Quickcheck/narrowing_generators.ML Thu Aug 18 16:52:19 2011 +0900 +++ b/src/HOL/Tools/Quickcheck/narrowing_generators.ML Thu Aug 18 12:06:17 2011 +0200 @@ -465,7 +465,7 @@ (* setup *) -val active = Attrib.setup_config_bool @{binding quickcheck_narrowing_active} (K false); +val active = Attrib.setup_config_bool @{binding quickcheck_narrowing_active} (K true); val setup = Code.datatype_interpretation ensure_partial_term_of @@ -474,4 +474,4 @@ (((@{sort typerep}, @{sort term_of}), @{sort narrowing}), instantiate_narrowing_datatype)) #> Context.theory_map (Quickcheck.add_tester ("narrowing", (active, test_goals))) -end; \ No newline at end of file +end;