polyvecreduce function
Reduce all coefficients in each polynomial modulo q.
Implementation
void polyvecreduce(PolyVec v) {
for (int i = 0; i < KYBER_K; i++) {
polyreduce(v.vec[i]);
}
}
Reduce all coefficients in each polynomial modulo q.
void polyvecreduce(PolyVec v) {
for (int i = 0; i < KYBER_K; i++) {
polyreduce(v.vec[i]);
}
}