Karatsuba algorithm: Difference between revisions

Content deleted Content added
Pseudocode was not consistent with the math. After few hours of debugging I realized the math was correct.
m typo
Line 178:
/* 3 calls made to numbers approximately half the size. */
z0 = karatsuba(low1, low2)
z1 = karatsuba(low1, high1) + karatsuba(low2, high2))
z2 = karatsuba(high1, high2)