|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
36 METHOD( "SPxSolver::setPrimalBounds()" );
84 METHOD( "SPxSolver::clearDualBounds()" );
109 METHOD( "SPxSolver::setDualColBounds()" );
117 for(i = 0; i < nRows(); ++i)
125 for(i = 0; i < nCols(); ++i)
140 METHOD( "SPxSolver::setDualRowBounds()" );
146 for(i = 0; i < nRows(); ++i)
154 for(i = 0; i < nCols(); ++i)
173 METHOD( "SPxSolver::setEnterBound4Row()" );
174 assert( baseId(i).isSPxRowId());
176 switch ( desc().rowStatus(n))
196 METHOD( "SPxSolver::setEnterBound4Col()" );
197 assert( baseId(i).isSPxColId());
199 switch ( desc().colStatus(n))
219 METHOD( "SPxSolver::setEnterBounds()" );
221 for ( int i = 0; i < dim(); ++i)
240 METHOD( "SPxSolver::setLeaveBound4Row()" );
241 assert( baseId(i).isSPxRowId());
243 switch ( desc().rowStatus(n))
272 METHOD( "SPxSolver::setLeaveBound4Col()" );
274 assert( baseId(i).isSPxColId());
277 switch ( desc().colStatus(n))
304 METHOD( "SPxSolver::setLeaveBounds()" );
306 for ( int i = 0; i < dim(); ++i)
319 METHOD( "SPxSolver::testBounds()" );
324 int nlinesprinted = 0;
326 for( int i = 0; i < dim(); ++i )
333 << " viol_max: " << viol_max
335 << " UBbound: "<< theUBbound[i] << std::endl; )
341 << " viol_max: " << viol_max
343 << " LBbound: "<< theLBbound[i] << std::endl; )
346 if( nlinesprinted >= 3 )
348 MSG_INFO2( spxout << "WBOUND10 suppressing further warnings of type WBOUND{01,02} in this round" << std::endl );
356 int nlinesprinted = 0;
358 for( int i = 0; i < dim(); ++i )
360 if ((* theCoPvec)[i] > (*theCoUbound)[i] + viol_max)
363 << " viol_max: " << viol_max
365 << " CoUbound: "<< (* theCoUbound)[i] << std::endl; )
371 << " viol_max: " << viol_max
377 if( nlinesprinted >= 3 )
379 MSG_INFO2( spxout << "WBOUND11 suppressing further warnings of type WBOUND{03,04} in this round" << std::endl );
385 for( int i = 0; i < coDim(); ++i )
387 if ((* thePvec)[i] > (*theUbound)[i] + viol_max)
390 << " viol_max: " << viol_max
392 << " Ubound: " << (* theUbound)[i] << std::endl; )
398 << " viol_max: " << viol_max
400 << " Lbound: " << (* theLbound)[i] << std::endl; )
403 if( nlinesprinted >= 3 )
405 MSG_INFO2( spxout << "WBOUND12 suppressing further warnings of type WBOUND{05,06} in this round" << std::endl );
|