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 was archived by the owner on Mar 13, 2026. It is now read-only.
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
Some functions use
big.Intas 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 thebigpackage use