src/HOL/Tools/Quickcheck/find_unused_assms.ML
changeset 46711 f745bcc4a1e5
parent 46589 689311986778
child 46713 e6e1ec6d5c1c
--- a/src/HOL/Tools/Quickcheck/find_unused_assms.ML	Mon Feb 27 16:53:13 2012 +0100
+++ b/src/HOL/Tools/Quickcheck/find_unused_assms.ML	Mon Feb 27 16:56:25 2012 +0100
@@ -41,7 +41,7 @@
     val ctxt' = ctxt
        |> Config.put Quickcheck.abort_potential true
        |> Config.put Quickcheck.quiet true
-    val all_thms = filter (fn (s, _) => length (space_explode "." s) = 2)
+    val all_thms = filter (fn (s, _) => length (Long_Name.explode s) = 2)  (* FIXME !? *)
       (thms_of (Proof_Context.theory_of ctxt) thy_name)
     fun check_single conjecture =
       case try (Quickcheck.test_terms ctxt' (true, true) []) [(conjecture, [])] of