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

Method reportAlgorithmPhase

highs/simplex/HighsSimplexAnalysis.cpp:1290–1303  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1288}
1289
1290void 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
1305void HighsSimplexAnalysis::reportIterationObjective(const bool header) {
1306 if (header) {

Callers

nothing calls this directly

Calls 2

highsFormatToStringFunction · 0.85
c_strMethod · 0.80

Tested by

no test coverage detected