src/HOL/ex/svc_funcs.ML
changeset 15965 f422f8283491
parent 15574 b1d1b5bfc464
child 16258 f3d913abf7e5
--- a/src/HOL/ex/svc_funcs.ML	Mon May 16 09:35:05 2005 +0200
+++ b/src/HOL/ex/svc_funcs.ML	Mon May 16 10:29:15 2005 +0200
@@ -27,14 +27,14 @@
    | UnInterp of string * expr list
    | FalseExpr 
    | TrueExpr
-   | Int of int
-   | Rat of int * int;
+   | Int of IntInf.int
+   | Rat of IntInf.int * IntInf.int;
 
  open BasisLibrary
 
  fun signedInt i = 
-     if i < 0 then "-" ^ Int.toString (~i)
-     else Int.toString i;
+     if i < 0 then "-" ^ IntInf.toString (~i)
+     else IntInf.toString i;
 	 
  fun is_intnat T = T = HOLogic.intT orelse T = HOLogic.natT;