LibOpIntMaxNP
Opcode to find the max from N integers.
Functions
integrity
function integrity(IntegrityCheckStateNP memory, Operand operand) internal pure returns (uint256, uint256);
run
int-max Finds the maximum value from N integers.
function run(InterpreterStateNP memory, Operand operand, Pointer stackTop) internal pure returns (Pointer);
referenceFn
Gas intensive reference implementation of maximum for testing.
function referenceFn(InterpreterStateNP memory, Operand, uint256[] memory inputs)
internal
pure
returns (uint256[] memory outputs);