Skip to content

Commit 88a8ef3

Browse files
committed
Print comment when resetting iteration
1 parent 55231fb commit 88a8ef3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

highs/ipm/hipo/ipm/Solver.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,8 @@ void Solver::printOutput(bool reset) const {
12681268
if (!reset) {
12691269
logger_.print("%5d ", iter_);
12701270
} else {
1271-
logger_.print(">%4d ", it_->best_iter);
1271+
logger_.print(" Resetting to iteration %d\n", it_->best_iter);
1272+
logger_.print("%5d ", it_->best_iter);
12721273
}
12731274

12741275
logger_.print("%16.8e %16.8e %10.2e %10.2e %9.2e", it_->pobj, it_->dobj,

0 commit comments

Comments
 (0)