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

Method reportOneDensity

highs/simplex/HighsSimplexAnalysis.cpp:1368–1379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1366}
1367
1368void HighsSimplexAnalysis::reportOneDensity(const double density) {
1369 assert(
1370 // analyse_simplex_summary_data ||
1371 analyse_simplex_runtime_data);
1372 const HighsInt log_10_density = intLog10(density);
1373 if (log_10_density > -99) {
1374 *analysis_log << highsFormatToString(" %4" HIGHSINT_FORMAT "",
1375 log_10_density);
1376 } else {
1377 *analysis_log << highsFormatToString(" ");
1378 }
1379}
1380
1381void HighsSimplexAnalysis::printOneDensity(const double density) const {
1382 assert(analyse_simplex_summary_data || analyse_simplex_runtime_data);

Callers

nothing calls this directly

Calls 1

highsFormatToStringFunction · 0.85

Tested by

no test coverage detected