(no commit message)
authorlkcl <lkcl@web>
Thu, 21 Apr 2022 17:59:50 +0000 (18:59 +0100)
committerIkiWiki <ikiwiki.info>
Thu, 21 Apr 2022 17:59:50 +0000 (18:59 +0100)
openpower/sv/biginteger/analysis.mdwn

index f44212fff9ecee61214228c4129d9b4491ef126b..a9a913691fc792e98f565039dae6f9e4411d1fef 100644 (file)
@@ -246,8 +246,9 @@ The simplest implementation of big-int divide is the standard schoolbook
 Algorithm D performs estimates which, if wrong, are compensated for
 afterwards.  Essentially there are three phases:
 
-* Calculation of the quotient estimate. This is Scalar division
-  and can be ignored for the scope of this analysis
+* Calculation of the quotient estimate. This uses a single
+  Scalar divide,
+  which can be ignored for the scope of this analysis
 * Big Integer multiply and subtract.
 * Carry-Correction with a big integer add, if the estimate from
   phase 1 was wrong by one digit.