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
Assuming that for every given A, Bbn_gcd_ext_binar must return the same Bezout coefficients X, Y as bn_gcd_ext, which satisfy X <= (B / (2 * GCD(A,B))) and Y <= (A / (2 * GCD(A,B))), the following code provides a counterexample for which this does not hold.
Assuming that for every given
A, B
bn_gcd_ext_binar
must return the same Bezout coefficientsX, Y
asbn_gcd_ext
, which satisfyX <= (B / (2 * GCD(A,B)))
andY <= (A / (2 * GCD(A,B)))
, the following code provides a counterexample for which this does not hold.See also #223
This prints:
Validate Bezout coefficients in Python:
The text was updated successfully, but these errors were encountered: