Karatsuba algorithm: Difference between revisions

Content deleted Content added
Bluelink 1 book for verifiability (goog)) #IABot (v2.0) (GreenC bot
Pseudocode was not consistent with the math. After few hours of debugging I realized the math was correct.
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)