src/HOL/Tools/Quickcheck/find_unused_assms.ML
changeset 59582 0fbed69ff081
parent 58893 9e0ecb66d6a7
child 59936 b8ffc3dc9e24
--- a/src/HOL/Tools/Quickcheck/find_unused_assms.ML	Tue Mar 03 19:08:04 2015 +0100
+++ b/src/HOL/Tools/Quickcheck/find_unused_assms.ML	Wed Mar 04 19:53:18 2015 +0100
@@ -14,7 +14,7 @@
 struct
 
 fun thms_of thy thy_name = Global_Theory.all_thms_of thy false
-  |> filter (fn (_, th) => Context.theory_name (theory_of_thm th) = thy_name)
+  |> filter (fn (_, th) => Context.theory_name (Thm.theory_of_thm th) = thy_name)
 
 fun do_while P f s list =
   if P s then
@@ -52,7 +52,7 @@
             if member (op =) S x then I
             else insert (eq_set (op =)) (insert (op =) x S)) X) Ss []
     fun check (s, th) =
-      (case Logic.strip_horn (prop_of (Thm.unvarify_global th)) of
+      (case Logic.strip_horn (Thm.prop_of (Thm.unvarify_global th)) of
         ([], _) => (s, NONE)
       | (ts, t) =>
           let