You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
413 B
19 lines
413 B
pragma solidity ^0.4.24;
|
|
|
|
|
|
import "../../contracts/math/Math.sol";
|
|
|
|
|
|
contract MathMock {
|
|
function max(uint256 _a, uint256 _b) public pure returns (uint256) {
|
|
return Math.max(_a, _b);
|
|
}
|
|
|
|
function min(uint256 _a, uint256 _b) public pure returns (uint256) {
|
|
return Math.min(_a, _b);
|
|
}
|
|
|
|
function average(uint256 _a, uint256 _b) public pure returns (uint256) {
|
|
return Math.average(_a, _b);
|
|
}
|
|
}
|
|
|