| 344 | } |
| 345 | |
| 346 | bool hasNamesWithSpaces(const HighsLogOptions& log_options, const HighsLp& lp) { |
| 347 | if (hasNamesWithSpaces(log_options, true, lp.col_names_)) return true; |
| 348 | return hasNamesWithSpaces(log_options, false, lp.row_names_); |
| 349 | } |
| 350 | |
| 351 | bool hasNamesWithSpaces(const HighsLogOptions& log_options, const bool col, |
| 352 | const std::vector<std::string>& names) { |
no test coverage detected