src/HOL/Tools/Nitpick/nitpick_hol.ML
changeset 36062 194cb6e3c13f
parent 35994 9cc3df9a606e
child 36126 00d550b6cfd4
--- a/src/HOL/Tools/Nitpick/nitpick_hol.ML	Mon Mar 29 15:26:19 2010 +0200
+++ b/src/HOL/Tools/Nitpick/nitpick_hol.ML	Mon Mar 29 15:50:18 2010 +0200
@@ -217,6 +217,7 @@
 structure Nitpick_HOL : NITPICK_HOL =
 struct
 
+open Sledgehammer_Util
 open Nitpick_Util
 
 type const_table = term list Symtab.table
@@ -1229,8 +1230,8 @@
   | is_ground_term _ = false
 
 (* term -> word -> word *)
-fun hashw_term (t1 $ t2) = Polyhash.hashw (hashw_term t1, hashw_term t2)
-  | hashw_term (Const (s, _)) = Polyhash.hashw_string (s, 0w0)
+fun hashw_term (t1 $ t2) = hashw (hashw_term t1, hashw_term t2)
+  | hashw_term (Const (s, _)) = hashw_string (s, 0w0)
   | hashw_term _ = 0w0
 (* term -> int *)
 val hash_term = Word.toInt o hashw_term