| 1288 | } |
| 1289 | |
| 1290 | void HighsSimplexAnalysis::reportAlgorithmPhase(const bool header) { |
| 1291 | if (header) { |
| 1292 | *analysis_log << " "; |
| 1293 | } else { |
| 1294 | std::string algorithm_name; |
| 1295 | if (dualAlgorithm()) { |
| 1296 | algorithm_name = "Du"; |
| 1297 | } else { |
| 1298 | algorithm_name = "Pr"; |
| 1299 | } |
| 1300 | *analysis_log << highsFormatToString("%2sPh%1" HIGHSINT_FORMAT, |
| 1301 | algorithm_name.c_str(), solve_phase); |
| 1302 | } |
| 1303 | } |
| 1304 | |
| 1305 | void HighsSimplexAnalysis::reportIterationObjective(const bool header) { |
| 1306 | if (header) { |
nothing calls this directly
no test coverage detected