polyinvntttomont function

void polyinvntttomont(
  1. Poly a
)

Applies the inverse NTT transform (returning the polynomial in standard representation).

Implementation

void polyinvntttomont(Poly a) {
  a.coeffs = invntt(a.coeffs);
}