QDouble.st
changeset 4444 cfd4e60c3b99
parent 4443 1a8440a32671
child 4445 5267aa3922e4
--- a/QDouble.st	Thu Jun 22 16:55:19 2017 +0200
+++ b/QDouble.st	Thu Jun 22 16:55:41 2017 +0200
@@ -2134,7 +2134,7 @@
 
     "/ initial approx.
     x := d0 ln asQDouble.
-    "/ three more iterations of taylor
+    "/ three more iterations of newton...
     x := x + (self / (x exp)) - 1.0.
     x := x + (self / (x exp)) - 1.0.
     x := x + (self / (x exp)) - 1.0.
@@ -2167,7 +2167,7 @@
     "
 
     "Created: / 18-06-2017 / 23:32:54 / cg"
-    "Modified (comment): / 22-06-2017 / 15:36:50 / cg"
+    "Modified (comment): / 22-06-2017 / 16:55:30 / cg"
 !
 
 negated