SequenceableCollection.st
changeset 22906 68b93ca8fbec
parent 22734 d6ccee71b508
child 22928 135cc629badc
--- a/SequenceableCollection.st	Fri May 11 14:21:33 2018 +0200
+++ b/SequenceableCollection.st	Fri May 11 14:21:48 2018 +0200
@@ -10899,7 +10899,9 @@
 !
 
 hornerMultiplyAndAdd:x
-    "fallback for horner's-method computation of polynomials.
+    "horner's-method computation of polynomials.
+     (this is a fallback - there are highspeed versions in the floatArray subclasses.
+
      The vector is interpreted as providing the factors for a polynomial,
         an*x^n + (an-1)*x^(n-1) + ... + a2(x) + a1
      where the ai are the elements of the Array.