|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
32 #define MAXIMUM(x,y) ((x)>(y) ? (x) : (y))
37 METHOD( "SPxSolver::read()" );
58 METHOD( "SPxSolver::reLoad()" );
70 METHOD( "SPxSolver::loadLP()" );
85 METHOD( "SPxSolver::setSolver()" );
91 METHOD( "SPxSolver::loadBasis()" );
101 METHOD( "SPxSolver::setPricer()" );
129 METHOD( "SPxSolver::setTester()" );
156 METHOD( "SPxSolver::setStarter()" );
172 METHOD( "SPxSolver::setType()" );
192 << static_cast<const char*>((tp == LEAVE)
193 ? "leaving" : "entering")
194 << " algorithm" << std::endl; )
200 METHOD( "SPxSolver::initRep()" );
257 METHOD( "SPxSolver::setRep()" );
266 METHOD( "SPxSolver::reinitializeVecs" );
313 METHOD( "SPxSolver::init()" );
415 METHOD( "SPxSolver::setPricing()" );
431 METHOD( "SPxSolver::reDim()" );
439 while (newsize-- > 0)
466 METHOD( "SPxSolver::clear()" );
494 METHOD( "SPxSolver::clearUpdateVecs()" );
509 METHOD( "SPxSolver::factorize()" );
591 s << "XSOLVE21 Basis is singular (numerical troubles, feastol = " << feastol() << ", opttol = " << opttol() << ")";
595 #ifdef ENABLE_ADDITIONAL_CHECKS
607 METHOD( "SPxSolver::maxInfeas()" );
612 for ( int i = 0; i < dim(); i++)
624 for ( int i = 0; i < dim(); i++)
631 for ( int i = 0; i < coDim(); i++)
633 if ((* thePvec)[i] > (*theUbound)[i])
635 else if ((* thePvec)[i] < (*theLbound)[i])
645 METHOD( "SPxSolver::nonbasicValue()" );
655 for (i = nCols() - 1; i >= 0; --i)
674 for (i = nRows() - 1; i >= 0; --i)
692 for (i = nCols() - 1; i >= 0; --i)
716 for (i = nCols() - 1; i >= 0; --i)
734 for (i = nRows() - 1; i >= 0; --i)
759 METHOD( "SPxSolver::value()" );
783 METHOD( "SPxSolver::setFeastol()" );
790 MSG_WARNING( spxout << "WSOLVE32 Warning: Cannot set primal feasibility tolerance smaller than " << DEFAULT_BND_VIOL * 1e-6 << " because of missing GMP support (compile with GMP=true).\n" );
802 METHOD( "SPxSolver::setOpttol()" );
809 MSG_WARNING( spxout << "WSOLVE33 Warning: Cannot set dual feasibility tolerance smaller than " << DEFAULT_BND_VIOL * 1e-6 << " because of missing GMP support (compile with GMP=true).\n" );
821 METHOD( "SPxSolver::setDelta()" );
828 MSG_WARNING( spxout << "WSOLVE34 Warning: Cannot set feasibility tolerance smaller than " << DEFAULT_BND_VIOL * 1e-6 << " because of missing GMP support (compile with GMP=true).\n" );
838 METHOD( "SPxSolver::setIrthreshold()" );
885 METHOD( "SPxSolver::SPxSolver()" );
925 METHOD( "SPxSolver::operator=(const SPxSolver&base)" );
1086 , theType(base.theType)
1087 , thePricing(base.thePricing)
1088 , theRep(base.theRep)
1089 , theTime(base.theTime)
1090 , theCumulativeTime(base.theCumulativeTime)
1091 , maxIters(base.maxIters)
1092 , maxRefines(base.maxRefines)
1093 , maxTime(base.maxTime)
1094 , objLimit(base.objLimit)
1095 , m_status(base.m_status)
1096 , m_entertol(base.m_entertol)
1097 , m_leavetol(base.m_leavetol)
1098 , m_irthreshold(base.m_irthreshold)
1099 , theShift(base.theShift)
1100 , lastShift(base.lastShift)
1101 , m_maxCycle(base.m_maxCycle)
1102 , m_numCycle(base.m_numCycle)
1103 , initialized(base.initialized)
1107 , instableLeaveNum(base.instableLeaveNum)
1108 , instableLeave(base.instableLeave)
1109 , unitVecs(base.unitVecs)
1110 , primRhs(base.primRhs)
1111 , primVec(base.primVec)
1112 , dualRhs(base.dualRhs)
1113 , dualVec(base.dualVec)
1114 , addVec(base.addVec)
1115 , theURbound(base.theURbound)
1116 , theLRbound(base.theLRbound)
1117 , theUCbound(base.theUCbound)
1118 , theLCbound(base.theLCbound)
1119 , theUBbound(base.theUBbound)
1120 , theLBbound(base.theLBbound)
1121 , theCoTest(base.theCoTest)
1122 , theTest(base.theTest)
1123 , primalRay(base.primalRay)
1124 , dualFarkas(base.dualFarkas)
1125 , leaveCount(base.leaveCount)
1126 , enterCount(base.enterCount)
1127 , infeasibilities(base.infeasibilities)
1128 , infeasibilitiesCo(base.infeasibilitiesCo)
1129 , isInfeasible(base.isInfeasible)
1130 , isInfeasibleCo(base.isInfeasibleCo)
1131 , sparsePricingLeave(base.sparsePricingLeave)
1132 , sparsePricingEnter(base.sparsePricingEnter)
1133 , sparsePricingEnterCo(base.sparsePricingEnterCo)
1134 , remainingRoundsLeave(base.remainingRoundsLeave)
1135 , remainingRoundsEnter(base.remainingRoundsEnter)
1136 , remainingRoundsEnterCo(base.remainingRoundsEnterCo)
1137 , sparsityThresholdLeave(base.sparsityThresholdLeave)
1138 , sparsityThresholdEnter(base.sparsityThresholdEnter)
1139 , sparsityThresholdEnterCo(base.sparsityThresholdEnterCo)
1141 METHOD( "SPxSolver::SPxSolver(const SPxSolver&base)" );
1222 #ifdef ENABLE_CONSISTENCY_CHECKS
1223 METHOD( "SPxSolver::isConsistent()" );
1272 reinterpret_cast<const SVSet*>(static_cast<const LPRowSet*>( this))
1274 reinterpret_cast<const SVSet* >( static_cast<const LPColSet* >( this))
1291 != reinterpret_cast<const SVSet*>(static_cast<const LPColSet*>( this))
1293 != reinterpret_cast<const SVSet*>(static_cast<const LPRowSet*>( this))
1330 METHOD( "SPxSolver::setTerminationTime()" );
1338 METHOD( "SPxSolver::terminationTime()" );
1344 METHOD( "SPxSolver::setTerminationIter()" );
1345 if( p_iteration < 0 )
1352 METHOD( "SPxSolver::terminationIter()" );
1358 METHOD( "SPxSolver::setMaxRefinements()" );
1359 if( p_maxrefinements < 0 )
1360 p_maxrefinements = -1;
1366 METHOD( "SPxSolver::terminationIter()" );
1378 METHOD( "SPxSolver::setTerminationValue()" );
1384 METHOD( "SPxSolver::terminationValue()" );
1391 METHOD( "SPxSolver::VarStatus()" );
1416 MSG_ERROR( spxout << "ESOLVE26 ERROR: unknown basis status (" << stat << ")"
1426 METHOD( "SPxSolver::varStatusToBasisStatusRow()" );
1432 assert( rhs(row) == lhs(row));
1437 rstat = lhs(row) < rhs(row)
1443 rstat = lhs(row) < rhs(row)
1455 if ( lhs(row) == rhs(row) )
1476 MSG_ERROR( spxout << "ESOLVE27 ERROR: unknown VarStatus (" << int(stat) << ")"
1486 METHOD( "SPxSolver::varStatusToBasisStatusCol()" );
1494 else if ( maxObj(col) > 0.0)
1542 MSG_ERROR( spxout << "ESOLVE28 ERROR: unknown VarStatus (" << int(stat) << ")"
1551 METHOD( "SPxSolver::VarStatus()" );
1552 assert( 0 <= row && row < nRows() );
1558 METHOD( "SPxSolver::VarStatus()" );
1559 assert( 0 <= col && col < nCols() );
1565 METHOD( "SPxSolver::Status()" );
1570 for (i = nCols() - 1; i >= 0; --i)
1574 for (i = nRows() - 1; i >= 0; --i)
1582 METHOD( "SPxSolver::isBasisValid()" );
1590 for ( int row = nRows()-1; row >= 0; --row )
1595 else if ( p_rows[row] == BASIC )
1602 if ( (p_rows[row] == FIXED && lhs(row) != rhs(row))
1609 for ( int col = nCols()-1; col >= 0; --col )
1614 else if ( p_cols[col] == BASIC )
1628 if ( basisdim != dim() )
1637 METHOD( "SPxSolver::setBasis()" );
1645 for(i = 0; i < nRows(); i++)
1648 for(i = 0; i < nCols(); i++)
1699 os << "NO_RATIOTESTER";
1711 os << "ABORT_CYCLING";
1720 os << "ABORT_VALUE";
|