Changeset 1706
- Timestamp:
- Mar 16, 2011 10:29:23 AM (9 years ago)
- Location:
- trunk/Clp/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Clp/src/ClpSimplexDual.cpp
r1665 r1706 4483 4483 objectiveValue(),sumPrimalInfeasibilities_, 4484 4484 sumDualInfeasibilities_);*/ 4485 // mark as having gone optimal if looks like it 4486 if (!numberPrimalInfeasibilities_&& 4487 !numberDualInfeasibilities_) 4488 progressFlag_ |= 8; 4485 4489 if (handler_->detail(CLP_SIMPLEX_STATUS, messages_) < 100) { 4486 4490 handler_->message(CLP_SIMPLEX_STATUS, messages_) … … 5193 5197 if (problemStatus_ > 2) 5194 5198 objectiveValue_ = approximateObjective; 5199 if (problemStatus_ == 1 && (progressFlag_&8) != 0 && 5200 fabs(objectiveValue_) > 1.0e10 ) 5201 problemStatus_ = 10; // infeasible - but has looked feasible 5195 5202 } 5196 5203 /* While updateDualsInDual sees what effect is of flip -
trunk/Clp/src/ClpSolve.cpp
r1699 r1706 2479 2479 setLogLevel(CoinMin(0, saveLevel)); 2480 2480 pinfo->postsolve(true); 2481 numberIterations_ = 0; 2481 2482 delete pinfo; 2482 2483 pinfo = NULL;
Note: See TracChangeset
for help on using the changeset viewer.