The simplest implementation of big-int divide is the standard schoolbook
"Long Division", set with RADIX 64 instead of Base 10. Donald Knuth's
Algorithm D performs estimates which, if wrong, are compensated for
-afterwards. Essentially however there are three phases:
+afterwards. Essentiallythere are three phases:
* Calculation of the quotient estimate. This is Scalar division
and can be ignored for the scope of this analysis