1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
Copyright (C) 2020 Daniel Schultz
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version. See <https://www.gnu.org/licenses/>.
*/
#include "fmpz_mat.h"
#include "mpoly.h"
#include "fmpz_mod_mpoly.h"
/* evaluate B(x_1,...,x_n) at x_i = y_c[i], y_j are vars of ctxAC */
void fmpz_mod_mpoly_compose_fmpz_mod_mpoly_gen(fmpz_mod_mpoly_t A,
const fmpz_mod_mpoly_t B, const slong * c,
const fmpz_mod_mpoly_ctx_t ctxB, const fmpz_mod_mpoly_ctx_t ctxAC)
{
fmpz_mat_t M;
if (B->length == 0)
{
fmpz_mod_mpoly_zero(A, ctxAC);
return;
}
fmpz_mat_init(M, ctxAC->minfo->nfields + 1, ctxB->minfo->nfields);
mpoly_compose_mat_gen(M, c, ctxB->minfo, ctxAC->minfo);
if (A == B)
{
fmpz_mod_mpoly_t T;
fmpz_mod_mpoly_init(T, ctxAC);
_fmpz_mod_mpoly_compose_mat(T, B, M, ctxB, ctxAC);
fmpz_mod_mpoly_swap(A, T, ctxAC);
fmpz_mod_mpoly_clear(T, ctxAC);
}
else
{
_fmpz_mod_mpoly_compose_mat(A, B, M, ctxB, ctxAC);
}
fmpz_mat_clear(M);
return;
}