Integer.st
changeset 8635 38674ba49a14
parent 8573 240f0fa27d20
child 8892 5d05a7f150a5
--- a/Integer.st	Fri Nov 12 13:24:19 2004 +0100
+++ b/Integer.st	Fri Nov 12 13:24:34 2004 +0100
@@ -733,9 +733,15 @@
     "return the maximum relative spacing"
 
     "don't know, what to really return here.
-     Returning 1 gives bas values when doing 2 sqrt"
+     Returning 1 gives stupid values when doing some taylor series approximations
+     (although it is correct)"
 
     ^ Float epsilon.
+
+    "
+     2 sqrt_withAccuracy:(Integer epsilon)  
+     2 sqrt_withAccuracy:1                  
+    "
 !
 
 unity
@@ -782,7 +788,6 @@
 
 ! !
 
-
 !Integer methodsFor:'Compatibility-Dolphin'!
 
 & aNumber
@@ -3469,7 +3474,7 @@
 !Integer class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.171 2004-09-22 07:14:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Integer.st,v 1.172 2004-11-12 12:23:18 cg Exp $'
 ! !
 
 Integer initialize!