We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6b279c commit e359ba7Copy full SHA for e359ba7
src/OsiClp/OsiClpSolverInterface.cpp
@@ -8112,7 +8112,8 @@ void OsiClpSolverInterface::crunch()
8112
small->moreSpecialOptions_ = modelPtr_->moreSpecialOptions_;
8113
small->dual(0, 7);
8114
#endif
8115
- if (small->problemStatus()==0&&small->secondaryStatus_>2) {
+ if ((small->problemStatus()==0&&small->secondaryStatus_>2)
8116
+ || small->problemStatus()==10) {
8117
totalIterations += small->numberIterations();
8118
small->primal(); // had dual infeasibilities
8119
// say did both
0 commit comments