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
Note that the existing code is correct but not efficient. The ith quotient polynomial is q(xi, xi+1, ..., xn) that has no variable xi, thus q(0, xi+1, ..., xn) = q(1, xi+1, ..., xn). To have more efficient opening, we only need to set the ith quotient polynomial to be q(xi+1, ..., xn).
The text was updated successfully, but these errors were encountered:
Same issue as in EspressoSystems/hyperplonk#109
The line to be fixed in Jellyfish: https://github.com/EspressoSystems/jellyfish/blob/main/primitives/src/pcs/multilinear_kzg/mod.rs#L357
Note that the existing code is correct but not efficient. The ith quotient polynomial is q(xi, xi+1, ..., xn) that has no variable xi, thus q(0, xi+1, ..., xn) = q(1, xi+1, ..., xn). To have more efficient opening, we only need to set the ith quotient polynomial to be q(xi+1, ..., xn).
The text was updated successfully, but these errors were encountered: