src/HOL/Matrix/Compute_Oracle/am_compiler.ML
changeset 41491 a2ad5b824051
parent 37872 d83659570337
child 41959 b460124855b8
--- a/src/HOL/Matrix/Compute_Oracle/am_compiler.ML	Mon Jan 10 15:30:17 2011 +0100
+++ b/src/HOL/Matrix/Compute_Oracle/am_compiler.ML	Mon Jan 10 15:45:46 2011 +0100
@@ -30,7 +30,7 @@
 
 fun print_rule (p, t) = 
     let
-        fun str x = Int.toString x
+        fun str x = string_of_int x
         fun print_pattern n PVar = (n+1, "x"^(str n))
           | print_pattern n (PConst (c, [])) = (n, "c"^(str c))
           | print_pattern n (PConst (c, args)) = 
@@ -86,7 +86,7 @@
         fun writeln s = (write s; write "\n")
         fun writelist [] = ()
           | writelist (s::ss) = (writeln s; writelist ss)
-        fun str i = Int.toString i
+        fun str i = string_of_int i
         val _ = writelist [
                 "structure "^name^" = struct",
                 "",