|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
41 METHOD( "SPxSolver::computeFtest()" );
47 int ninfeasibilities = 0;
49 for( int i = 0; i < dim(); ++i )
68 MSG_INFO2( spxout << "ILEAVE05 too many infeasibilities for sparse pricing"
86 << std::setw(6) << std::fixed << std::setprecision(4)
87 << ( Real) ninfeasibilities/ dim()
88 << std::scientific << std::setprecision( int(prec))
96 METHOD( "SPxSolver::updateFtest()" );
99 assert(&ftest == & fTest());
104 for ( int j = idx. size() - 1; j >= 0; --j)
106 int i = idx. index(j);
136 METHOD( "SPxSolver::getLeaveVals()" );
138 leaveId = baseId(leaveIdx);
166 assert( lhs(leaveNum) == rhs(leaveNum));
167 leavebound = - rhs(leaveNum);
176 leavebound = - rhs(leaveNum);
182 leavebound = - lhs(leaveNum);
191 leavebound = - lhs(leaveNum);
198 leavebound = - rhs(leaveNum);
206 MSG_DEBUG( spxout << "DLEAVE51 SPxSolver::getLeaveVals() : row " << leaveNum
290 MSG_DEBUG( spxout << "DLEAVE52 SPxSolver::getLeaveVals() : col " << leaveNum
306 METHOD( "SPxSolver::getLeaveVals2()" );
365 newUBbound = - lhs(idx);
366 newLBbound = - rhs(idx);
367 enterBound = - rhs(idx);
375 newLBbound = - rhs(idx);
376 newUBbound = - lhs(idx);
377 enterBound = - lhs(idx);
384 MSG_ERROR( spxout << "ELEAVE53 ERROR: not yet debugged!" << std::endl; )
395 << "ERROR! Tried to put a fixed row variable into the basis: "
397 << ", lhs=" << lhs(idx)
398 << ", rhs=" << rhs(idx) << std::endl; )
404 MSG_DEBUG( spxout << "DLEAVE55 SPxSolver::getLeaveVals2(): row " << idx
491 << "ERROR! Tried to put a fixed column variable into the basis. "
493 << ", lower=" << lower(idx)
494 << ", upper=" << upper(idx) << std::endl; )
500 MSG_DEBUG( spxout << "DLEAVE57 SPxSolver::getLeaveVals2(): col " << idx
515 METHOD( "SPxSolver::rejectLeave()" );
521 << " -> " << leaveStat << std::endl; )
536 << " -> " << leaveStat << std::endl; )
552 METHOD( "SPxSolver::leave()" );
553 assert(leaveIdx < dim() && leaveIdx >= 0);
568 #ifdef ENABLE_ADDITIONAL_CHECKS
579 << ": coPvec.delta error = " << tmp. length()
597 getLeaveVals(leaveIdx, leaveStat, leaveId, leaveMax, leavebound, leaveNum);
611 Real enterVal = leaveMax;
631 if (enterVal != leaveMax)
633 MSG_DEBUG( spxout << "DLEAVE61 rejecting leave A (leaveIdx=" << leaveIdx
634 << ", theCoTest=" << theCoTest[leaveIdx] << ")"
651 instableLeaveNum = leaveIdx;
664 << "leave() for feasibility test" << std::endl; )
674 << "in leave()" << std::endl; )
685 sign = (enterVal > 0 ? -1 : +1);
699 if (enterId != baseId(leaveIdx))
721 << "breakpoints passed / bounds flipped = " << boundflips
749 << "breakpoints passed / bounds flipped = " << boundflips
757 #ifdef ENABLE_ADDITIONAL_CHECKS
780 << "in leave()" << std::endl; )
792 sign = (enterVal > 0 ? 1.0 : -1.0);
806 sign = (enterVal > 0 ? -1.0 : +1.0);
819 rejectLeave(leaveNum, leaveId, leaveStat, &newVector);
822 MSG_DEBUG( spxout << "DLEAVE63 rejecting leave B (leaveIdx=" << leaveIdx
824 << ")" << std::endl; )
845 getLeaveVals2(leaveMax, enterId, enterBound, newUBbound, newLBbound, newCoPrhs);
856 (*theCoPrhs)[leaveIdx] = newCoPrhs;
891 change(leaveIdx, none, 0);
898 (*theCoPrhs)[leaveIdx] = theLRbound[leaveNum];
903 (*theCoPrhs)[leaveIdx] = theLCbound[leaveNum];
914 (*theCoPrhs)[leaveIdx] = theURbound[leaveNum];
919 (*theCoPrhs)[leaveIdx] = theUCbound[leaveNum];
946 #ifdef ENABLE_ADDITIONAL_CHECKS
956 << ": fVec error = " << tmp. length() << std::endl; )
|