mirror of openzeppelin-contracts
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.
|
|
|
pragma solidity ^0.5.2;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @title Math
|
|
|
|
* @dev Assorted math operations.
|
|
|
|
*/
|
|
|
|
library Math {
|
|
|
|
/**
|
|
|
|
* @dev Returns the largest of two numbers.
|
|
|
|
*/
|
|
|
|
function max(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
|
|
return a >= b ? a : b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Returns the smallest of two numbers.
|
|
|
|
*/
|
|
|
|
function min(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
|
|
return a < b ? a : b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Calculates the average of two numbers. Since these are integers,
|
|
|
|
* averages of an even and odd number cannot be represented, and will be
|
|
|
|
* rounded down.
|
|
|
|
*/
|
|
|
|
function average(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
|
|
// (a + b) / 2 can overflow, so we distribute
|
|
|
|
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
|
|
|
|
}
|
|
|
|
}
|