| 774 | } |
| 775 | |
| 776 | double doublePercentage(const HighsInt of, const HighsInt in) { |
| 777 | return ((100.0 * of) / in); |
| 778 | } |
| 779 | |
| 780 | HighsInt integerPercentage(const HighsInt of, const HighsInt in) { |
| 781 | const double double_percentage = ((100.0 * of) / in) + 0.4999; |
no outgoing calls
no test coverage detected