MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / reportMulti

Method reportMulti

highs/simplex/HighsSimplexAnalysis.cpp:1354–1366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1352}
1353
1354void 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
1368void HighsSimplexAnalysis::reportOneDensity(const double density) {
1369 assert(

Callers

nothing calls this directly

Calls 1

highsFormatToStringFunction · 0.85

Tested by

no test coverage detected