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
Some functions use big.Int as arguments, while others use *big.Int. The same happens with scope variables, some hints store them as references while others store their value, which can lead to bugs in cross-hint interaction. We should have a unified criteria to avoid any kind of confusions.
I suggest sticking to *big.Int, as this is what all functions and methods in the big package use
The text was updated successfully, but these errors were encountered:
Some functions use
big.Int
as arguments, while others use*big.Int
. The same happens with scope variables, some hints store them as references while others store their value, which can lead to bugs in cross-hint interaction. We should have a unified criteria to avoid any kind of confusions.I suggest sticking to
*big.Int
, as this is what all functions and methods in thebig
package useThe text was updated successfully, but these errors were encountered: