| 16 | static bool written_cli_copyright_line = false; |
| 17 | |
| 18 | void cliCopyrightLine(const HighsLogOptions& log_options) { |
| 19 | if (written_cli_copyright_line) return; |
| 20 | highsLogUser(log_options, HighsLogType::kInfo, |
| 21 | "Command line parsed using CLI11 %s: Copyright (c) 2017-2025 " |
| 22 | "University of Cincinnati\n", |
| 23 | CLI11_VERSION); |
| 24 | written_cli_copyright_line = true; |
| 25 | } |
| 26 | |
| 27 | int runHighsReturn(Highs& highs, const int status) { |
| 28 | // Possibly write out the HiGHS and CLI copyright lines |
no test coverage detected