All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
spxsolve.cpp
Go to the documentation of this file.
57 bool reached = maxViolRedCost < opttol() && maxViolBounds < feastol() && maxViolConst < feastol();
92 /* store the last (primal or dual) feasible objective value to recover/abort in case of stalling */
176 /* if we run into a singular basis, we will retry from regulardesc with tighter tolerance in the ratio test */
201 /* in the entering algorithm, entertol() should be maintained by the ratio test and leavetol() should be
217 MSG_DEBUG( spxout << "decreased delta for ratiotest to: " << theratiotester->getDelta() << std::endl; )
276 // if the factorization is not fresh, we better refactorize and call the pricer again; however, this can
285 MSG_ERROR( spxout << "ESOLVE09 something wrong with factorization, Basis status: " << SPxBasis::status() << std::endl; )
320 if( lastEntered().isValid() ) /* either a successful pivot was performed or a nonbasic variable flipped to the other bound */
344 /* try to recover by unshifting/switching algorithm up to MAXSTALLRECOVERS times (just a number picked) */
345 MSG_INFO3( spxout << "ISOLVE21 Stalling detected - trying to recover by switching to LEAVING algorithm." << std::endl; )
353 MSG_INFO2( spxout << "ISOLVE22 Abort solving due to stalling in entering algorithm." << std::endl; );
387 /**@todo technically it would be ok to finish already when (priced && maxinfeas + shift() <= entertol()) is
388 * satisfied; maybe at least in the case when SoPlex keeps jumping back between ENTER and LEAVE always
432 /* in the leaving algorithm, leavetol() should be maintained by the ratio test and entertol() should be reached
448 MSG_DEBUG( spxout << "decreased delta for ratiotest to: " << theratiotester->getDelta() << std::endl; )
526 // if the factorization is not fresh, we better refactorize and call the pricer again; however, this can
535 MSG_ERROR( spxout << "ESOLVE10 something wrong with factorization, Basis status: " << SPxBasis::status() << std::endl; )
570 if( lastIndex() >= 0 ) /* either a successful pivot was performed or a nonbasic variable flipped to the other bound */
580 MSG_INFO2( spxout << "ISOLVE83 Abort solving due to cycling in leaving algorithm" << std::endl; );
594 MSG_INFO3( spxout << "ISOLVE24 Stalling detected - trying to recover by switching to ENTERING algorithm." << std::endl; )
602 MSG_INFO2( spxout << "ISOLVE25 Abort solving due to stalling in leaving algorithm" << std::endl; );
657 /**@todo technically it would be ok to finish already when (priced && maxinfeas + shift() <= entertol()) is
658 * satisfied; maybe at least in the case when SoPlex keeps jumping back between ENTER and LEAVE always
703 // if we stopped due to a singular basis, we reload the original basis and try again with tighter
713 MSG_INFO2( spxout << "ISOLVE26e basis singular: reloading basis and solving with tighter ratio test tolerance " << m_entertol << std::endl; )
719 MSG_INFO2( spxout << "ISOLVE26l basis singular: reloading basis and solving with tighter ratio test tolerance " << m_leavetol << std::endl; )
737 MSG_INFO2( spxout << "ISOLVE27 reloaded basis singular, resetting original tolerances" << std::endl; )
906 MSG_WARNING( spxout << "WSOLVE35 Warning: Iterative refinement disabled because of missing GMP support (compile with GMP=true).\n" );
950 /* deactivate objective limit; because fpsolve() uses a relaxed tolerance for checking dual feasibility, it might
1058 precisionreached = refine(irfeastol, iropttol, primal_ex, slack_ex, dual_ex, redcost_ex, 5 * iterations());
1091 assert(basisdesc.rowStatus(row) == SPxBasis::Desc::P_FIXED || basisdesc.rowStatus(row) == SPxBasis::Desc::D_FREE);
1093 MSG_DEBUG( spxout << "removing slack column C" << col << ": status=" << basisdesc.colStatus(col) << ", lower=" << lower(col) << ", upper=" << upper(col) << "\n" );
1159 /* initialize data structures after removing the slack columns; if refinement has been applied, we are at an
1160 * optimal basis; otherwise we have to perform a last floating point solve after removing slack columns
1194 MSG_INFO3( spxout << "distance between floating point and refined primal solution is " << tmp.length() << std::endl );
1205 MSG_INFO3( spxout << "distance between floating point and refined slack vector is " << tmp.length() << std::endl );
1216 MSG_INFO3( spxout << "distance between floating point and refined dual solution is " << tmp.length() << std::endl );
1227 MSG_INFO3( spxout << "distance between floating point and refined redcost vector is " << tmp.length() << std::endl );
1244 /* restore tolerances; this must be done after init(), because the shift procedures can't handle tolerances smaller
1336 /* number of simplex iterations, refinements in total, and refinements with actual simplex iterations being performed */
1436 if( (spxSense() == MINIMIZE && basisstat != SPxBasis::Desc::P_ON_UPPER && basisstat != SPxBasis::Desc::P_FIXED)
1437 || (spxSense() == MAXIMIZE && basisstat != SPxBasis::Desc::P_ON_LOWER && basisstat != SPxBasis::Desc::P_FIXED) )
1443 if( (spxSense() == MINIMIZE && basisstat != SPxBasis::Desc::P_ON_LOWER && basisstat != SPxBasis::Desc::P_FIXED)
1444 || (spxSense() == MAXIMIZE && basisstat != SPxBasis::Desc::P_ON_UPPER && basisstat != SPxBasis::Desc::P_FIXED) )
1451 /* at this point the vectors primal_ex, slack_ex, dual_ex, redcost_ex are computed and we may exit */
1465 MSG_INFO1( spxout << "\nrefinement finished: maximum number of refinement rounds reached\n\n" );
1473 /* compute primal scaling factor; limit increase in scaling by tolerance used in floating point solve */
1493 /* compute dual scaling factor; limit increase in scaling by tolerance used in floating point solve */
1581 MSG_INFO1( spxout << "\nrefinement finished: modified problem terminated with status " << status() << "\n\n" );
1654 /* output violations; the reduced cost violations for artificially introduced slack columns are actually violations of the dual multipliers */
|