#include "nmod.h"
#include "fmpz.h"
#include "fmpz_vec.h"
#include "mpoly.h"
#include "nmod_mpoly.h"
static slong _nmod_mpoly_mul_johnson1(
nmod_mpoly_t A,
const ulong * coeff2, const ulong * exp2, slong len2,
const ulong * coeff3, const ulong * exp3, slong len3,
ulong maskhi,
nmod_t fctx)
{
slong i, j;
slong next_loc;
slong Q_len = 0, heap_len = 2;
mpoly_heap1_s * heap;
mpoly_heap_t * chain;
slong * Q;
mpoly_heap_t * x;
slong len1;
ulong * p1 = A->coeffs;
ulong * e1 = A->exps;
slong * hind;
ulong exp;
ulong acc0, acc1, acc2, pp0, pp1;
TMP_INIT;
TMP_START;
next_loc = len2 + 4;
heap = (mpoly_heap1_s *) TMP_ALLOC((len2 + 1)*sizeof(mpoly_heap1_s));
chain = (mpoly_heap_t *) TMP_ALLOC(len2*sizeof(mpoly_heap_t));
Q = (slong *) TMP_ALLOC(2*len2*sizeof(slong));
hind = (slong *) TMP_ALLOC(len2*sizeof(slong));
for (i = 0; i < len2; i++)
hind[i] = 1;
x = chain + 0;
x->i = 0;
x->j = 0;
x->next = NULL;
HEAP_ASSIGN(heap[1], exp2[0] + exp3[0], x);
hind[0] = 2*1 + 0;
len1 = 0;
while (heap_len > 1)
{
exp = heap[1].exp;
_nmod_mpoly_fit_length(&p1, &A->coeffs_alloc,
&e1, &A->exps_alloc, 1, len1 + 1);
e1[len1] = exp;
acc0 = acc1 = acc2 = 0;
do
{
x = _mpoly_heap_pop1(heap, &heap_len, maskhi);
hind[x->i] |= WORD(1);
Q[Q_len++] = x->i;
Q[Q_len++] = x->j;
umul_ppmm(pp1, pp0, coeff2[x->i], coeff3[x->j]);
add_sssaaaaaa(acc2, acc1, acc0, acc2, acc1, acc0, WORD(0), pp1, pp0);
while ((x = x->next) != NULL)
{
hind[x->i] |= WORD(1);
Q[Q_len++] = x->i;
Q[Q_len++] = x->j;
umul_ppmm(pp1, pp0, coeff2[x->i], coeff3[x->j]);
add_sssaaaaaa(acc2, acc1, acc0, acc2, acc1, acc0, WORD(0), pp1, pp0);
}
} while (heap_len > 1 && heap[1].exp == exp);
NMOD_RED3(p1[len1], acc2, acc1, acc0, fctx);
len1 += (p1[len1] != 0);
while (Q_len > 0)
{
j = Q[--Q_len];
i = Q[--Q_len];
if ( (i + 1 < len2)
&& (hind[i + 1] == 2*j + 1)
)
{
x = chain + i + 1;
x->i = i + 1;
x->j = j;
x->next = NULL;
hind[x->i] = 2*(x->j + 1) + 0;
_mpoly_heap_insert1(heap, exp2[x->i] + exp3[x->j], x,
&next_loc, &heap_len, maskhi);
}
if ( (j + 1 < len3)
&& ((hind[i] & 1) == 1)
&& ( (i == 0)
|| (hind[i - 1] >= 2*(j + 2) + 1)
)
)
{
x = chain + i;
x->i = i;
x->j = j + 1;
x->next = NULL;
hind[x->i] = 2*(x->j + 1) + 0;
_mpoly_heap_insert1(heap, exp2[x->i] + exp3[x->j], x,
&next_loc, &heap_len, maskhi);
}
}
}
A->coeffs = p1;
A->exps = e1;
A->length = len1;
TMP_END;
return len1;
}
slong _nmod_mpoly_mul_johnson(
nmod_mpoly_t A,
const ulong * coeff2, const ulong * exp2, slong len2,
const ulong * coeff3, const ulong * exp3, slong len3,
flint_bitcnt_t bits,
slong N,
const ulong * cmpmask,
nmod_t fctx)
{
slong i, j;
slong next_loc;
slong Q_len = 0, heap_len = 2;
mpoly_heap_s * heap;
mpoly_heap_t * chain;
slong * Q;
mpoly_heap_t * x;
slong len1;
ulong * p1 = A->coeffs;
ulong * e1 = A->exps;
ulong * exp, * exps;
ulong ** exp_list;
slong exp_next;
slong * hind;
ulong acc0, acc1, acc2, pp0, pp1;
TMP_INIT;
FLINT_ASSERT(len2 > 0);
FLINT_ASSERT(len3 > 0);
if (N == 1)
return _nmod_mpoly_mul_johnson1(A, coeff2, exp2, len2,
coeff3, exp3, len3, cmpmask[0], fctx);
TMP_START;
next_loc = len2 + 4;
heap = (mpoly_heap_s *) TMP_ALLOC((len2 + 1)*sizeof(mpoly_heap_s));
chain = (mpoly_heap_t *) TMP_ALLOC(len2*sizeof(mpoly_heap_t));
Q = (slong *) TMP_ALLOC(2*len2*sizeof(slong));
exps = (ulong *) TMP_ALLOC(len2*N*sizeof(ulong));
exp_list = (ulong **) TMP_ALLOC(len2*sizeof(ulong *));
for (i = 0; i < len2; i++)
exp_list[i] = exps + i*N;
hind = (slong *) TMP_ALLOC(len2*sizeof(slong));
for (i = 0; i < len2; i++)
hind[i] = 1;
exp_next = 0;
x = chain + 0;
x->i = 0;
x->j = 0;
x->next = NULL;
heap[1].next = x;
heap[1].exp = exp_list[exp_next++];
if (bits <= FLINT_BITS)
mpoly_monomial_add(heap[1].exp, exp2, exp3, N);
else
mpoly_monomial_add_mp(heap[1].exp, exp2, exp3, N);
hind[0] = 2*1 + 0;
len1 = 0;
while (heap_len > 1)
{
exp = heap[1].exp;
_nmod_mpoly_fit_length(&p1, &A->coeffs_alloc,
&e1, &A->exps_alloc, N, len1 + 1);
mpoly_monomial_set(e1 + len1*N, exp, N);
acc0 = acc1 = acc2 = 0;
do
{
exp_list[--exp_next] = heap[1].exp;
x = _mpoly_heap_pop(heap, &heap_len, N, cmpmask);
hind[x->i] |= WORD(1);
Q[Q_len++] = x->i;
Q[Q_len++] = x->j;
umul_ppmm(pp1, pp0, coeff2[x->i], coeff3[x->j]);
add_sssaaaaaa(acc2, acc1, acc0, acc2, acc1, acc0, WORD(0), pp1, pp0);
while ((x = x->next) != NULL)
{
hind[x->i] |= WORD(1);
Q[Q_len++] = x->i;
Q[Q_len++] = x->j;
umul_ppmm(pp1, pp0, coeff2[x->i], coeff3[x->j]);
add_sssaaaaaa(acc2, acc1, acc0, acc2, acc1, acc0, WORD(0), pp1, pp0);
}
} while (heap_len > 1 && mpoly_monomial_equal(heap[1].exp, exp, N));
NMOD_RED3(p1[len1], acc2, acc1, acc0, fctx);
len1 += (p1[len1] != 0);
while (Q_len > 0)
{
j = Q[--Q_len];
i = Q[--Q_len];
if ( (i + 1 < len2)
&& (hind[i + 1] == 2*j + 1)
)
{
x = chain + i + 1;
x->i = i + 1;
x->j = j;
x->next = NULL;
hind[x->i] = 2*(x->j+1) + 0;
if (bits <= FLINT_BITS)
mpoly_monomial_add(exp_list[exp_next], exp2 + x->i*N, exp3 + x->j*N, N);
else
mpoly_monomial_add_mp(exp_list[exp_next], exp2 + x->i*N, exp3 + x->j*N, N);
exp_next += _mpoly_heap_insert(heap, exp_list[exp_next], x,
&next_loc, &heap_len, N, cmpmask);
}
if ( (j + 1 < len3)
&& ((hind[i] & 1) == 1)
&& ( (i == 0)
|| (hind[i - 1] >= 2*(j + 2) + 1)
)
)
{
x = chain + i;
x->i = i;
x->j = j + 1;
x->next = NULL;
hind[x->i] = 2*(x->j+1) + 0;
if (bits <= FLINT_BITS)
mpoly_monomial_add(exp_list[exp_next], exp2 + x->i*N, exp3 + x->j*N, N);
else
mpoly_monomial_add_mp(exp_list[exp_next], exp2 + x->i*N, exp3 + x->j*N, N);
exp_next += _mpoly_heap_insert(heap, exp_list[exp_next], x,
&next_loc, &heap_len, N, cmpmask);
}
}
}
A->coeffs = p1;
A->exps = e1;
A->length = len1;
TMP_END;
return len1;
}
void _nmod_mpoly_mul_johnson_maxfields(
nmod_mpoly_t A,
const nmod_mpoly_t B, fmpz * maxBfields,
const nmod_mpoly_t C, fmpz * maxCfields,
const nmod_mpoly_ctx_t ctx)
{
slong N;
flint_bitcnt_t Abits;
ulong * cmpmask;
ulong * Bexps = B->exps, * Cexps = C->exps;
int freeBexps = 0, freeCexps = 0;
nmod_mpoly_struct * a, T[1];
TMP_INIT;
TMP_START;
_fmpz_vec_add(maxBfields, maxBfields, maxCfields, ctx->minfo->nfields);
Abits = 1 + _fmpz_vec_max_bits(maxBfields, ctx->minfo->nfields);
Abits = FLINT_MAX(Abits, B->bits);
Abits = FLINT_MAX(Abits, C->bits);
Abits = mpoly_fix_bits(Abits, ctx->minfo);
N = mpoly_words_per_exp(Abits, ctx->minfo);
cmpmask = (ulong*) TMP_ALLOC(N*sizeof(ulong));
mpoly_get_cmpmask(cmpmask, N, Abits, ctx->minfo);
if (Abits != B->bits)
{
freeBexps = 1;
Bexps = (ulong *) flint_malloc(N*B->length*sizeof(ulong));
mpoly_repack_monomials(Bexps, Abits, B->exps, B->bits, B->length, ctx->minfo);
}
if (Abits != C->bits)
{
freeCexps = 1;
Cexps = (ulong *) flint_malloc(N*C->length*sizeof(ulong));
mpoly_repack_monomials(Cexps, Abits, C->exps, C->bits, C->length, ctx->minfo);
}
if (A == B || A == C)
{
nmod_mpoly_init(T, ctx);
a = T;
}
else
{
a = A;
}
nmod_mpoly_fit_length_reset_bits(a, B->length + C->length, Abits, ctx);
if (B->length > C->length)
{
_nmod_mpoly_mul_johnson(a, C->coeffs, Cexps, C->length,
B->coeffs, Bexps, B->length, Abits, N, cmpmask, ctx->mod);
}
else
{
_nmod_mpoly_mul_johnson(a, B->coeffs, Bexps, B->length,
C->coeffs, Cexps, C->length, Abits, N, cmpmask, ctx->mod);
}
if (A == B || A == C)
{
nmod_mpoly_swap(A, T, ctx);
nmod_mpoly_clear(T, ctx);
}
if (freeBexps)
flint_free(Bexps);
if (freeCexps)
flint_free(Cexps);
TMP_END;
}
void nmod_mpoly_mul_johnson(
nmod_mpoly_t A,
const nmod_mpoly_t B,
const nmod_mpoly_t C,
const nmod_mpoly_ctx_t ctx)
{
slong i;
fmpz * maxBfields, * maxCfields;
TMP_INIT;
if (B->length == 0 || C->length == 0)
{
nmod_mpoly_zero(A, ctx);
return;
}
TMP_START;
maxBfields = (fmpz *) TMP_ALLOC(ctx->minfo->nfields*sizeof(fmpz));
maxCfields = (fmpz *) TMP_ALLOC(ctx->minfo->nfields*sizeof(fmpz));
for (i = 0; i < ctx->minfo->nfields; i++)
{
fmpz_init(maxBfields + i);
fmpz_init(maxCfields + i);
}
mpoly_max_fields_fmpz(maxBfields, B->exps, B->length, B->bits, ctx->minfo);
mpoly_max_fields_fmpz(maxCfields, C->exps, C->length, C->bits, ctx->minfo);
_nmod_mpoly_mul_johnson_maxfields(A, B, maxBfields, C, maxCfields, ctx);
for (i = 0; i < ctx->minfo->nfields; i++)
{
fmpz_clear(maxBfields + i);
fmpz_clear(maxCfields + i);
}
TMP_END;
}