| 253 | } |
| 254 | |
| 255 | std::string getFilenameExt(const std::string& filename) { |
| 256 | std::string name = filename; |
| 257 | std::size_t found = name.find_last_of("."); |
| 258 | if (found < name.size()) { |
| 259 | name = name.substr(found + 1); |
| 260 | } else { |
| 261 | name = ""; |
| 262 | } |
| 263 | return name; |
| 264 | } |
| 265 | |
| 266 | void highsReportDevInfo(const HighsLogOptions* log_options, |
| 267 | const std::string& line) { |
no test coverage detected