libzahl

big integer library
git clone git://git.suckless.org/libzahl
Log | Files | Refs | README | LICENSE

commit b241d940ec7fc3574ab7510145bd3a4d8e6df5cb
parent b9ba3cb8db7ad2541ed923f8e80956f7230b2ac8
Author: Mattias Andrée <maandree@kth.se>
Date:   Sun,  6 Mar 2016 21:48:53 +0100

Fix typo

Signed-off-by: Mattias Andrée <maandree@kth.se>

Diffstat:
Msrc/zmul.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/zmul.c b/src/zmul.c @@ -8,7 +8,7 @@ zmul(z_t a, z_t b, z_t c) /* * Karatsuba algorithm * - * Basically, this how you were toughed to multiply large numbers + * Basically, this is how you were toughed 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: