polyinvntttomont function
Applies the inverse NTT transform (returning the polynomial in standard representation).
Implementation
void polyinvntttomont(Poly a) {
a.coeffs = invntt(a.coeffs);
}
Applies the inverse NTT transform (returning the polynomial in standard representation).
void polyinvntttomont(Poly a) {
a.coeffs = invntt(a.coeffs);
}