X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/07dc33b2437c0da301ba93f650bf5b08d2206911..283b9af095a5b24ae71b49a6d2dcbdcdaae47c40:/mpx-kmul.c diff --git a/mpx-kmul.c b/mpx-kmul.c index 2a7f60c..f6b0b4f 100644 --- a/mpx-kmul.c +++ b/mpx-kmul.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mpx-kmul.c,v 1.5 2000/07/29 17:04:02 mdw Exp $ + * $Id: mpx-kmul.c,v 1.7 2000/10/08 15:48:35 mdw Exp $ * * Karatsuba's multiplication algorithm * @@ -30,6 +30,12 @@ /*----- Revision history --------------------------------------------------* * * $Log: mpx-kmul.c,v $ + * Revision 1.7 2000/10/08 15:48:35 mdw + * Rename Karatsuba constants now that we have @gfx_kmul@ too. + * + * Revision 1.6 2000/10/08 12:11:01 mdw + * Use @mpx_ueq@ instead of @MPX_UCMP@. + * * Revision 1.5 2000/07/29 17:04:02 mdw * Remove useless header `mpscan.h'. * @@ -54,13 +60,13 @@ #include #include "mpx.h" -#include "mpx-kmac.h" +#include "karatsuba.h" /*----- Tweakables --------------------------------------------------------*/ #ifdef TEST_RIG -# undef KARATSUBA_CUTOFF -# define KARATSUBA_CUTOFF 2 +# undef MPK_THRESH +# define MPK_THRESH 2 #endif /*----- Main code ---------------------------------------------------------*/ @@ -81,7 +87,7 @@ * * The destination must be twice as large as the larger * argument. The scratch space must be twice as large as the - * larger argument, plus the magic number @KARATSUBA_SLOP@. + * larger argument, plus the magic number @MPK_SLOP@. */ void mpx_kmul(mpw *dv, mpw *dvl, @@ -103,7 +109,7 @@ void mpx_kmul(mpw *dv, mpw *dvl, MPX_SHRINK(av, avl); MPX_SHRINK(bv, bvl); - if (avl - av <= KARATSUBA_CUTOFF || bvl - bv <= KARATSUBA_CUTOFF) { + if (avl - av <= MPK_THRESH || bvl - bv <= MPK_THRESH) { mpx_umul(dv, dvl, av, avl, bv, bvl); return; } @@ -123,7 +129,7 @@ void mpx_kmul(mpw *dv, mpw *dvl, /* --- First things --- * * * Sort out where to break the factors in half. I'll choose the midpoint - * of the largest one, since this minimizes the amount of work I have to do + * of the larger one, since this minimizes the amount of work I have to do * most effectively. */ @@ -156,7 +162,7 @@ void mpx_kmul(mpw *dv, mpw *dvl, UADD2(sv, bsv, av, avm, avm, avl); UADD2(bsv, ssv, bv, bvm, bvm, bvl); - if (m > KARATSUBA_CUTOFF) + if (m > MPK_THRESH) mpx_kmul(rdv, rdvl, sv, bsv, bsv, ssv, ssv, svl); else mpx_umul(rdv, rdvl, sv, bsv, bsv, ssv); @@ -172,7 +178,7 @@ void mpx_kmul(mpw *dv, mpw *dvl, if (avl == avm || bvl == bvm) MPX_ZERO(rdv + m + 1, dvl); else { - if (m > KARATSUBA_CUTOFF) + if (m > MPK_THRESH) mpx_kmul(sv, ssv, avm, avl, bvm, bvl, ssv, svl); else mpx_umul(sv, ssv, avm, avl, bvm, bvl); @@ -181,7 +187,7 @@ void mpx_kmul(mpw *dv, mpw *dvl, USUB(tdv, sv, svn); } - if (m > KARATSUBA_CUTOFF) + if (m > MPK_THRESH) mpx_kmul(sv, ssv, av, avm, bv, bvm, ssv, svl); else mpx_umul(sv, ssv, av, avm, bv, bvm); @@ -244,7 +250,7 @@ static int umul(dstr *v) ALLOC(s, sl, 2 * m + 32); mpx_kmul(d, dl, a, al, b, bl, s, sl); - if (MPX_UCMP(d, dl, !=, c, cl)) { + if (!mpx_ueq(d, dl, c, cl)) { fprintf(stderr, "\n*** umul failed\n"); dumpmp(" a", a, al); dumpmp(" b", b, bl);