polyntt function

void polyntt(
  1. Poly a
)

Applies the NTT transform to a polynomial.

Implementation

void polyntt(Poly a) {
  a.coeffs = ntt(a.coeffs);
}