We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mutation: File: algorithms/EllipticCurve.sol Line nr: 301 Result: Lived Original line: for(uint i = 0; i < exp; i++) {
Mutated line: for(uint i = 0; i >= exp; i++) {
The text was updated successfully, but these errors were encountered:
function multiplyPowerBase2(uint x0, uint y0, uint exp) public pure returns (uint, uint) { uint base2X = x0; uint base2Y = y0; uint base2Z = 1; for(uint i = 0; i < exp; i++) { (base2X, base2Y, base2Z) = twiceProj(base2X, base2Y, base2Z); }
Sorry, something went wrong.
No branches or pull requests
Mutation:
File: algorithms/EllipticCurve.sol
Line nr: 301
Result: Lived
Original line:
for(uint i = 0; i < exp; i++) {
The text was updated successfully, but these errors were encountered: