Skip to content

Commit

Permalink
ask for cpu time less often
Browse files Browse the repository at this point in the history
  • Loading branch information
jjhforrest committed Apr 17, 2024
1 parent f6e0dff commit 7c93423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ClpSimplexDual.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5425,7 +5425,7 @@ void ClpSimplexDual::statusOfProblemInDual(int &lastCleaned, int type,
// mark as having gone optimal if looks like it
if (!numberPrimalInfeasibilities_ && !numberDualInfeasibilities_)
progressFlag_ |= 8;
if (handler_->detail(CLP_SIMPLEX_STATUS, messages_) < 100 && (CoinWallclockTime() - lastStatusUpdate_ > minIntervalProgressUpdate_)) {
if (handler_->logLevel()>0&&handler_->detail(CLP_SIMPLEX_STATUS, messages_) < 100 && (CoinWallclockTime() - lastStatusUpdate_ > minIntervalProgressUpdate_)) {
handler_->message(CLP_SIMPLEX_STATUS, messages_)
<< numberIterations_ << objectiveValue();
handler_->printing(sumPrimalInfeasibilities_ > 0.0)
Expand Down

0 comments on commit 7c93423

Please sign in to comment.