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
{{ message }}
This repository has been archived by the owner on Feb 17, 2025. It is now read-only.
We always had a division by zero in blueprint_algebra_curves_plonk_variable_base_scalar_mul_test, near
assignment.witness(component.W(7), i + 1) = (P[0].Y - Q.Y) * (P[0].X - Q.X).inversed();
in include/nil/blueprint/components/algebra/curves/pasta/plonk/variable_base_scalar_mul.hpp.
P[0].X - Q.X is zero because both P[0].X and Q.X are zero.
We never noticed it because of in multiprecision A / 0 = 0, here:
So all this time when asking for the inverse element of zero, we were getting zero back... With changes to multiprecision we get a segfault...
The text was updated successfully, but these errors were encountered: