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
for two-chain we have wrapper for MillerLoop which goes from []G2Affine argument to []*G2Affine. But we compute the lines in the method which uses []G2Affine. However, as the slice contains of values then inside a method we are working on a copy of G2Affine value and we are not updating the lazy lines of the input. I think we can either change MillerLoop to take []*G2Affine so that can modify inline or precompute the lines in Pairing wrapper method Pairing.MillerLoop to already precompute. I like the first approach better because then we always will use lazy line computation.
Overflow issue from #949:
But I guess better to resolve with #863
The text was updated successfully, but these errors were encountered: