X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/f46efa79cd2bb9adc81541f1218965f85a6b2eef..3688eb757240b2332f67ec827be8caf6f6abe924:/mpreduce.c diff --git a/mpreduce.c b/mpreduce.c index 857549a..13e705e 100644 --- a/mpreduce.c +++ b/mpreduce.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mpreduce.c,v 1.1 2004/03/27 00:04:46 mdw Exp $ + * $Id$ * * Efficient reduction modulo nice primes * @@ -27,14 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: mpreduce.c,v $ - * Revision 1.1 2004/03/27 00:04:46 mdw - * Implement efficient reduction for pleasant-looking primes. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -72,7 +64,7 @@ void mpreduce_create(mpreduce *r, mp *p) /* --- Fill in the easy stuff --- */ - assert(MP_ISPOS(p)); + assert(MP_POSP(p)); d = mp_bits(p); r->lim = d/MPW_BITS; r->s = d%MPW_BITS; @@ -261,7 +253,7 @@ mp *mpreduce_do(mpreduce *r, mp *d, mp *x) /* --- If source is negative, divide --- */ - if (MP_ISNEG(x)) { + if (MP_NEGP(x)) { mp_div(0, &d, x, r->p); return (d); } @@ -343,12 +335,18 @@ mp *mpreduce_exp(mpreduce *mr, mp *d, mp *a, mp *e) mp *spare = (e->f & MP_BURN) ? MP_NEWSEC : MP_NEW; MP_SHRINK(e); - if (!MP_LEN(e)) + MP_COPY(a); + if (MP_ZEROP(e)) ; - else if (MP_LEN(e) < EXP_THRESH) - EXP_SIMPLE(x, a, e); - else - EXP_WINDOW(x, a, e); + else { + if (MP_NEGP(e)) + a = mp_modinv(a, a, mr->p); + if (MP_LEN(e) < EXP_THRESH) + EXP_SIMPLE(x, a, e); + else + EXP_WINDOW(x, a, e); + } + mp_drop(a); mp_drop(d); mp_drop(spare); return (x);