| 299 | } |
| 300 | |
| 301 | double highsRelativeDifference(const double v0, const double v1) { |
| 302 | return fabs(v0 - v1) / std::max(v0, std::max(v1, 1.0)); |
| 303 | } |
| 304 | |
| 305 | void analyseVectorValues(const HighsLogOptions* log_options, |
| 306 | const std::string& message, HighsInt vecDim, |
no outgoing calls
no test coverage detected