| 1352 | } |
| 1353 | |
| 1354 | void HighsSimplexAnalysis::reportMulti(const bool header) { |
| 1355 | assert(analyse_simplex_runtime_data); |
| 1356 | if (header) { |
| 1357 | *analysis_log << highsFormatToString(" Multi"); |
| 1358 | } else if (average_fraction_of_possible_minor_iterations_performed >= 0) { |
| 1359 | *analysis_log << highsFormatToString( |
| 1360 | " %3" HIGHSINT_FORMAT "%%", |
| 1361 | (HighsInt)(100 * |
| 1362 | average_fraction_of_possible_minor_iterations_performed)); |
| 1363 | } else { |
| 1364 | *analysis_log << highsFormatToString(" "); |
| 1365 | } |
| 1366 | } |
| 1367 | |
| 1368 | void HighsSimplexAnalysis::reportOneDensity(const double density) { |
| 1369 | assert( |
nothing calls this directly
no test coverage detected