| 1303 | } |
| 1304 | |
| 1305 | void HighsSimplexAnalysis::reportIterationObjective(const bool header) { |
| 1306 | if (header) { |
| 1307 | *analysis_log << " Iteration Objective "; |
| 1308 | } else { |
| 1309 | *analysis_log << highsFormatToString(" %10" HIGHSINT_FORMAT " %20.10e", |
| 1310 | simplex_iteration_count, |
| 1311 | objective_value); |
| 1312 | } |
| 1313 | } |
| 1314 | |
| 1315 | void HighsSimplexAnalysis::reportInfeasibility(const bool header) { |
| 1316 | if (header) { |
nothing calls this directly
no test coverage detected