SoPlex Doxygen Documentation

Bound flipping ratio test ("long step dual") for SoPlex.Class SPxBoundFlippingRT provides an implementation of the bound flipping ratio test as a derived class of SPxRatioTester. Dual step length is increased beyond some breakpoints and corresponding primal nonbasic variables are set to their other bound to handle the resulting dual infeasibility. More...

#include <spxboundflippingrt.h>

Inheritance diagram for SPxBoundFlippingRT:

Classes

struct  Breakpoint
 
struct  BreakpointCompare
 

Public Member Functions

void setLongsteps (bool ls)
 
Construction / destruction
 SPxBoundFlippingRT ()
 default constructor
 
 SPxBoundFlippingRT (const SPxBoundFlippingRT &old)
 copy constructor
 
SPxBoundFlippingRToperator= (const SPxBoundFlippingRT &rhs)
 assignment operator
 
virtual ~SPxBoundFlippingRT ()
 destructor
 
virtual SPxRatioTesterclone () const
 clone function for polymorphism
 
Select enter/leave
virtual int selectLeave (Real &val, SPxId enterId)
 
virtual SPxId selectEnter (Real &val, int leaveIdx)
 
- Public Member Functions inherited from SPxFastRT
 SPxFastRT ()
 default constructor
 
 SPxFastRT (const SPxFastRT &old)
 copy constructor
 
SPxFastRToperator= (const SPxFastRT &rhs)
 assignment operator
 
 SPxFastRT (const char *name)
 bound flipping constructor
 
virtual ~SPxFastRT ()
 destructor
 
virtual void load (SPxSolver *solver)
 
virtual void setType (SPxSolver::Type type)
 
virtual void setDelta (Real newDelta)
 
virtual Real getDelta ()
 
- Public Member Functions inherited from SPxRatioTester
virtual const char * getName () const
 get name of ratio tester.
 
virtual void clear ()
 unloads LP.
 
virtual SPxSolversolver () const
 returns loaded LP solver.
 
 SPxRatioTester (const char *name)
 default constructor
 
 SPxRatioTester (const SPxRatioTester &old)
 copy constructor
 
SPxRatioTesteroperator= (const SPxRatioTester &rhs)
 assignment operator
 
virtual ~SPxRatioTester ()
 destructor.
 

Private Types

substructures
enum  BreakpointSource { FVEC = -1, PVEC = 0, COPVEC = 1 }
 

Private Member Functions

void collectBreakpointsMax (int &nBp, int &minIdx, const int *idx, int nnz, const Real *upd, const Real *vec, const Real *upp, const Real *low, BreakpointSource src)
 
void collectBreakpointsMin (int &nBp, int &minIdx, const int *idx, int nnz, const Real *upd, const Real *vec, const Real *upp, const Real *low, BreakpointSource src)
 
bool getData (Real &val, SPxId &enterId, int idx, Real stab, Real degeneps, const Real *upd, const Real *vec, const Real *low, const Real *upp, BreakpointSource src, Real max)
 
void flipAndUpdate (int &usedBp)
 

Static Private Member Functions

static bool isSmaller (Breakpoint x, Breakpoint y)
 

Private Attributes

Data
bool enableLongsteps
 
Real flipPotential
 
int relax_count
 
DataArray< Breakpointbreakpoints
 
SSVector updPrimRhs
 
DVector updPrimVec
 

Additional Inherited Members

- Protected Member Functions inherited from SPxFastRT
void resetTols ()
 resets tolerances (epsilon).
 
void relax ()
 relaxes stability requirements.
 
void tighten ()
 tightens stability requirements.
 
Real minStability (Real maxabs)
 Compute stability requirement.
 
int maxDelta (Real &val, Real &maxabs, UpdateVector &update, const Vector &lowBound, const Vector &upBound, int start, int incr) const
 Max phase 1 value.
 
int maxDelta (Real &val, Real &maxabs)
 
SPxId maxDelta (int &nr, Real &val, Real &maxabs)
 
int minDelta (Real &val, Real &maxabs, UpdateVector &update, const Vector &lowBound, const Vector &upBound, int start, int incr) const
 Min phase 1 value.
 
int minDelta (Real &val, Real &maxabs)
 
SPxId minDelta (int &nr, Real &val, Real &maxabs)
 
int maxSelect (Real &val, Real &stab, Real &best, Real &bestDelta, Real max, const UpdateVector &upd, const Vector &low, const Vector &up, int start=0, int incr=1) const
 selects stable index for maximizing ratio test.
 
int maxSelect (Real &val, Real &stab, Real &bestDelta, Real max)
 
SPxId maxSelect (int &nr, Real &val, Real &stab, Real &bestDelta, Real max)
 
int minSelect (Real &val, Real &stab, Real &best, Real &bestDelta, Real max, const UpdateVector &upd, const Vector &low, const Vector &up, int start=0, int incr=1) const
 selects stable index for minimizing ratio test.
 
int minSelect (Real &val, Real &stab, Real &bestDelta, Real max)
 
SPxId minSelect (int &nr, Real &val, Real &stab, Real &bestDelta, Real max)
 
bool minShortLeave (Real &sel, int leave, Real maxabs)
 tests for stop after phase 1.
 
bool maxShortLeave (Real &sel, int leave, Real maxabs)
 
bool minReLeave (Real &sel, int leave, Real maxabs)
 numerical stability tests.
 
bool maxReLeave (Real &sel, int leave, Real maxabs)
 
bool minReEnter (Real &sel, Real maxabs, const SPxId &id, int nr)
 numerical stability check.
 
bool maxReEnter (Real &sel, Real maxabs, const SPxId &id, int nr)
 
bool shortEnter (const SPxId &enterId, int nr, Real max, Real maxabs) const
 Tests and returns whether a shortcut after phase 1 is feasible for the selected enter pivot.
 
- Protected Attributes inherited from SPxFastRT
Real minStab
 parameter for computing minimum stability requirement
 
Real epsilon
 |value| < epsilon is considered 0.
 
Real fastDelta
 currently allowed infeasibility.
 
bool iscoid
 flag used in methods minSelect/maxSelect to retrieve correct basis status
 

Detailed Description

Bound flipping ratio test ("long step dual") for SoPlex.

Class SPxBoundFlippingRT provides an implementation of the bound flipping ratio test as a derived class of SPxRatioTester. Dual step length is increased beyond some breakpoints and corresponding primal nonbasic variables are set to their other bound to handle the resulting dual infeasibility.

The implementation mostly follows the papers

  • I. Maros, "A generalized dual phase-2 simplex algorithm", European Journal of Operational Research Vol 149, Issue 1, pp. 1-16, 2003
  • A. Koberstein, "Progress in the dual simplex algorithm for solving large scale LP problems: techniques for a fast and stable implementation", Computational Optimization and Applications Vol 41, Nr 2, pp. 185-204, 2008

See SPxRatioTester for a class documentation.

Definition at line 50 of file spxboundflippingrt.h.

Member Enumeration Documentation

enum BreakpointSource
private

enumerator to remember which vector we have been searching to find a breakpoint

Enumerator
FVEC 
PVEC 
COPVEC 

Definition at line 57 of file spxboundflippingrt.h.

Constructor & Destructor Documentation

default constructor

Definition at line 176 of file spxboundflippingrt.h.

Referenced by SPxBoundFlippingRT::clone().

copy constructor

Definition at line 186 of file spxboundflippingrt.h.

virtual ~SPxBoundFlippingRT ( )
virtual

destructor

Definition at line 206 of file spxboundflippingrt.h.

Member Function Documentation

virtual SPxRatioTester* clone ( ) const
virtual

clone function for polymorphism

Reimplemented from SPxFastRT.

Definition at line 209 of file spxboundflippingrt.h.

References SPxBoundFlippingRT::SPxBoundFlippingRT().

void collectBreakpointsMax ( int &  nBp,
int &  minIdx,
const int *  idx,
int  nnz,
const Real upd,
const Real vec,
const Real upp,
const Real low,
BreakpointSource  src 
)
private

store all available pivots/breakpoints in an array (positive pivot search direction)

Parameters
nBpnumber of found breakpoints so far
minIdxindex to current minimal breakpoint
idxpointer to indices of current vector
nnznumber of nonzeros in current vector
updpointer to update values of current vector
vecpointer to values of current vector
upppointer to upper bound/rhs of current vector
lowpointer to lower bound/lhs of current vector
srctype of vector (pVec or coPvec)

Definition at line 165 of file spxboundflippingrt.cpp.

References SPxBoundFlippingRT::breakpoints, SPxFastRT::epsilon, SPxFastRT::fastDelta, and soplex::infinity.

Referenced by SPxBoundFlippingRT::selectEnter().

void collectBreakpointsMin ( int &  nBp,
int &  minIdx,
const int *  idx,
int  nnz,
const Real upd,
const Real vec,
const Real upp,
const Real low,
BreakpointSource  src 
)
private

store all available pivots/breakpoints in an array (negative pivot search direction)

Parameters
nBpnumber of found breakpoints so far
minIdxindex to current minimal breakpoint
idxpointer to indices of current vector
nnznumber of nonzeros in current vector
updpointer to update values of current vector
vecpointer to values of current vector
upppointer to upper bound/rhs of current vector
lowpointer to lower bound/lhs of current vector
srctype of vector (pVec or coPvec)

Definition at line 239 of file spxboundflippingrt.cpp.

References SPxBoundFlippingRT::breakpoints, SPxFastRT::epsilon, SPxFastRT::fastDelta, and soplex::infinity.

Referenced by SPxBoundFlippingRT::selectEnter().

bool getData ( Real val,
SPxId enterId,
int  idx,
Real  stab,
Real  degeneps,
const Real upd,
const Real vec,
const Real low,
const Real upp,
BreakpointSource  src,
Real  max 
)
private
static bool isSmaller ( Breakpoint  x,
Breakpoint  y 
)
staticprivate

comparison method for breakpoints

Definition at line 155 of file spxboundflippingrt.h.

References SPxBoundFlippingRT::Breakpoint::val.

SPxBoundFlippingRT& operator= ( const SPxBoundFlippingRT rhs)

assignment operator

Definition at line 196 of file spxboundflippingrt.h.

References SPxFastRT::operator=().

SPxId selectEnter ( Real val,
int  leaveIdx 
)
virtual

determine entering variable

Reimplemented from SPxFastRT.

Definition at line 389 of file spxboundflippingrt.cpp.

References SPxSolver::basis(), SPxSolver::boundflips, SPxBoundFlippingRT::breakpoints, SSVector::clearIdx(), SPxBoundFlippingRT::collectBreakpointsMax(), SPxBoundFlippingRT::collectBreakpointsMin(), SPxBoundFlippingRT::COPVEC, SPxSolver::coPvec(), SPxRatioTester::delta, UpdateVector::delta(), SPxBoundFlippingRT::enableLongsteps, SPxBoundFlippingRT::BreakpointCompare::entry, SPxFastRT::epsilon, SPxFastRT::fastDelta, SPxBoundFlippingRT::flipAndUpdate(), SPxBoundFlippingRT::flipPotential, SPxSolver::fTest(), Vector::get_const_ptr(), SPxBoundFlippingRT::getData(), SSVector::indexMem(), SPxSolver::instableLeave, SPxSolver::instableLeaveNum, SPxSolver::instableLeaveVal, SPxSolver::isBasic(), SPxSolver::isCoBasic(), SPxId::isValid(), SPxBasis::iteration(), SPxSolver::lcBound(), SPxSolver::LEAVE, SPxSolver::leaveCount, SPxLP::lhs(), LONGSTEP_FREQ, SPxLP::lower(), LOWSTAB, SPxSolver::lpBound(), SPxRatioTester::m_type, MAX_RELAX_COUNT, MIN_LONGSTEP, SPxFastRT::minStability(), MSG_DEBUG, SPxBoundFlippingRT::PVEC, SPxSolver::pVec(), SPxFastRT::relax(), SPxBoundFlippingRT::relax_count, SPxSolver::rep(), SPxFastRT::resetTols(), SPxLP::rhs(), SPxSolver::ROW, SPxFastRT::selectEnter(), SSVector::size(), soplex::sorter_qsortPart(), soplex::spxout, SPxRatioTester::thesolver, SPxFastRT::tighten(), SPxSolver::ucBound(), SPxSolver::upBound(), SPxLP::upper(), SSVector::values(), and SPxSolver::vector().

int selectLeave ( Real val,
SPxId  enterId 
)
virtual

Reimplemented from SPxFastRT.

Definition at line 746 of file spxboundflippingrt.cpp.

References SPxFastRT::selectLeave().

void setLongsteps ( bool  ls)

Definition at line 165 of file spxboundflippingrt.h.

References SPxBoundFlippingRT::enableLongsteps.

Member Data Documentation

bool enableLongsteps
private

enable or disable long steps (bound flips)

Definition at line 100 of file spxboundflippingrt.h.

Referenced by SPxBoundFlippingRT::selectEnter(), and SPxBoundFlippingRT::setLongsteps().

Real flipPotential
private

tracks bound flip history and decides which ratio test to use

Definition at line 101 of file spxboundflippingrt.h.

Referenced by SPxBoundFlippingRT::selectEnter().

int relax_count
private

count rounds of ratio test

Definition at line 102 of file spxboundflippingrt.h.

Referenced by SPxBoundFlippingRT::selectEnter().

SSVector updPrimRhs
private

right hand side vector of additional system to be solved after the ratio test

Definition at line 104 of file spxboundflippingrt.h.

Referenced by SPxBoundFlippingRT::flipAndUpdate().

DVector updPrimVec
private

allocation of memory for additional solution vector

Definition at line 105 of file spxboundflippingrt.h.

Referenced by SPxBoundFlippingRT::flipAndUpdate().