diff options
Diffstat (limited to 'src/zmul.c')
| -rw-r--r-- | src/zmul.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ zmul(z_t a, z_t b, z_t c) /* * Karatsuba algorithm * - * Basically, this is how you were toughed to multiply large numbers + * Basically, this is how you were taught to multiply large numbers * by hand in school: 4010⋅3020 = (4000 + 10)(3000 + 20) = = 40⋅30⋅10⁴ + (40⋅20 + 30⋅10)⋅10² + 10⋅20, but the middle is * optimised to only one multiplication: |
