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
cosetGensInv[i].Mul(&cosetGensInv[1], &d.FinerGeneratorInv) instead of cosetGensInv[i].Mul(&cosetGensInv[i-1], &d.FinerGeneratorInv).
The error didn't trigger failing tests in PLONK, because only the FFT (not FFTInverse) is used on cosets > 1, on which there is no error. The FFTInverse on cosets is used only for the first coset, on which there is no error.
The text was updated successfully, but these errors were encountered:
d := NewDomain(1, 1, false)
triggers a paniccosetGensInv[i].Mul(&cosetGensInv[1], &d.FinerGeneratorInv)
instead ofcosetGensInv[i].Mul(&cosetGensInv[i-1], &d.FinerGeneratorInv)
.The error didn't trigger failing tests in PLONK, because only the FFT (not FFTInverse) is used on cosets > 1, on which there is no error. The FFTInverse on cosets is used only for the first coset, on which there is no error.
The text was updated successfully, but these errors were encountered: