| 479 | } |
| 480 | |
| 481 | HighsDebugStatus debugCompareHighsInfoInteger(const string name, |
| 482 | const HighsOptions& options, |
| 483 | const HighsInt v0, |
| 484 | const HighsInt v1) { |
| 485 | if (v0 == v1) return HighsDebugStatus::kOk; |
| 486 | highsLogDev(options.log_options, HighsLogType::kError, |
| 487 | "SolutionPar: difference of %" HIGHSINT_FORMAT " for %s\n", |
| 488 | v1 - v0, name.c_str()); |
| 489 | return HighsDebugStatus::kLogicalError; |
| 490 | } |
no test coverage detected