Skip to content

Commit e359ba7

Browse files
committed
minor change to be on safe side
1 parent c6b279c commit e359ba7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/OsiClp/OsiClpSolverInterface.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8112,7 +8112,8 @@ void OsiClpSolverInterface::crunch()
81128112
small->moreSpecialOptions_ = modelPtr_->moreSpecialOptions_;
81138113
small->dual(0, 7);
81148114
#endif
8115-
if (small->problemStatus()==0&&small->secondaryStatus_>2) {
8115+
if ((small->problemStatus()==0&&small->secondaryStatus_>2)
8116+
|| small->problemStatus()==10) {
81168117
totalIterations += small->numberIterations();
81178118
small->primal(); // had dual infeasibilities
81188119
// say did both

0 commit comments

Comments
 (0)