| 1366 | } |
| 1367 | |
| 1368 | void 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 | |
| 1381 | void HighsSimplexAnalysis::printOneDensity(const double density) const { |
| 1382 | assert(analyse_simplex_summary_data || analyse_simplex_runtime_data); |
nothing calls this directly
no test coverage detected