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
The function applies a pairing function on each point to check for equality and returns True or False depending on whether the pairing check succeeds or fails.
This implies alt_bn128_pairing_product's result type is Bool, however it actually is Option Bool. The builtin returns None if the inputs are invalid (can this actually happen in a well-typed program?).
The text was updated successfully, but these errors were encountered:
This implies
alt_bn128_pairing_product
's result type isBool
, however it actually isOption Bool
. The builtin returnsNone
if the inputs are invalid (can this actually happen in a well-typed program?).The text was updated successfully, but these errors were encountered: