| 1339 | } |
| 1340 | |
| 1341 | void HighsSimplexAnalysis::reportThreads(const bool header) { |
| 1342 | assert(analyse_simplex_runtime_data); |
| 1343 | if (header) { |
| 1344 | *analysis_log << highsFormatToString(" Concurr."); |
| 1345 | } else if (num_concurrency > 0) { |
| 1346 | *analysis_log << highsFormatToString( |
| 1347 | " %2" HIGHSINT_FORMAT "|%2" HIGHSINT_FORMAT "|%2" HIGHSINT_FORMAT "", |
| 1348 | min_concurrency, num_concurrency, max_concurrency); |
| 1349 | } else { |
| 1350 | *analysis_log << highsFormatToString(" | | "); |
| 1351 | } |
| 1352 | } |
| 1353 | |
| 1354 | void HighsSimplexAnalysis::reportMulti(const bool header) { |
| 1355 | assert(analyse_simplex_runtime_data); |
nothing calls this directly
no test coverage detected