You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code quotient_poly.trim_to_len(quotient_degree) in plonk/prover.rs does not actually trim anything because the length of quotient_poly is always equal to quotient_degree.
The code
quotient_poly.trim_to_len(quotient_degree)
inplonk/prover.rs
does not actually trim anything because the length ofquotient_poly
is always equal toquotient_degree
.https://github.com/mir-protocol/plonky2/blob/eebdd02972fc98c3b0c6082f51d7a807cd8fcdf5/plonky2/src/plonk/prover.rs#L143
Therefore, even if the vanishing polynomial is not divisible by
Z_H
, the assertion intrim_to_len
is ignored and an invalid proof will be generated.Something like,
and
is desirable.
The text was updated successfully, but these errors were encountered: