SoPlex Doxygen Documentation

Steepest edge pricer.Class SPxSteepPR implements a steepest edge pricer to be used with SoPlex. More...

#include <spxsteeppr.h>

Inheritance diagram for SPxSteepPR:

Public Types

Types
enum  Setup { EXACT, DEFAULT }
 How to setup the direction multipliers. More...
 

Public Member Functions

void setupWeights (SPxSolver::Type type)
 setup steepest edge weights
 
Construction / destruction
 SPxSteepPR (const char *name="Steep", Setup mode=DEFAULT)
 
 SPxSteepPR (const SPxSteepPR &old)
 copy constructor
 
SPxSteepPRoperator= (const SPxSteepPR &rhs)
 assignment operator
 
virtual ~SPxSteepPR ()
 destructor
 
virtual SPxPricerclone () const
 clone function for polymorphism
 
Access / modification
virtual void load (SPxSolver *base)
 sets the solver
 
virtual void clear ()
 clear solver and preferences
 
virtual void setType (SPxSolver::Type)
 set entering/leaving algorithm
 
virtual void setRep (SPxSolver::Representation rep)
 set row/column representation
 
virtual int selectLeave ()
 
int selectLeavePart ()
 implementation of partial pricing
 
int selectLeaveSparse ()
 implementation of sparse pricing in the leaving Simplex
 
virtual void left4 (int n, SPxId id)
 
virtual SPxId selectEnter ()
 
SPxId selectEnterX ()
 choose the best entering index among columns and rows but prefer sparsity
 
SPxId selectEnterSparseDim (Real &best, SPxId enterId)
 implementation of sparse pricing for the entering Simplex (slack variables)
 
SPxId selectEnterSparseCoDim (Real &best, SPxId enterId)
 implementation of sparse pricing for the entering Simplex
 
SPxId selectEnterDenseDim (Real &best, SPxId enterId)
 implementation of selectEnter() in dense case (slack variables)
 
SPxId selectEnterDenseCoDim (Real &best, SPxId enterId)
 implementation of selectEnter() in dense case
 
virtual void entered4 (SPxId id, int n)
 
virtual void addedVecs (int n)
 n vectors have been added to loaded LP.
 
virtual void addedCoVecs (int n)
 n covectors have been added to loaded LP.
 
virtual void removedVec (int i)
 the i'th vector has been removed from the loaded LP.
 
virtual void removedCoVec (int i)
 the i'th covector has been removed from the loaded LP.
 
virtual void removedVecs (const int perm[])
 n vectors have been removed from loaded LP.
 
virtual void removedCoVecs (const int perm[])
 n covectors have been removed from loaded LP.
 
Consistency check
virtual bool isConsistent () const
 
- Public Member Functions inherited from SPxPricer
virtual const char * getName () const
 get name of pricer.
 
virtual SPxSolversolver () const
 returns loaded SPxSolver object.
 
virtual Real epsilon () const
 returns violation bound theeps.
 
virtual void setEpsilon (Real eps)
 sets violation bound.
 
virtual void removedVecs (const int *)
 vectors given by perm have been removed from loaded LP.
 
virtual void removedCoVecs (const int *)
 covectors given by perm have been removed from loaded LP.
 
 SPxPricer (const char *p_name)
 constructor
 
 SPxPricer (const SPxPricer &old)
 copy constructor
 
SPxPriceroperator= (const SPxPricer &rhs)
 assignment operator
 
virtual ~SPxPricer ()
 destructor.
 

Private Member Functions

Preferences
void setupPrefsX (Real mult, Real, Real, Real shift, Real coshift)
 
void setupPrefs (SPxSolver::Type)
 

Private Attributes

Data
DVector penalty
 vector of pricing penalties
 
DVector coPenalty
 vector of pricing penalties
 
DVector workVec
 working vector
 
SSVector workRhs
 working vector
 
Real pi_p
 
int prefSetup
 
DataArray< RealcoPref
 preference multiplier for selecting as pivot
 
DataArray< Realpref
 preference multiplier for selecting as pivot
 
DataArray< RealleavePref
 
Setup setup
 setup type.
 
Real accuracy
 accuracy for computing steepest directions.
 
int startpricing
 index at which partial pricing should start
 

Additional Inherited Members

- Protected Attributes inherited from SPxPricer
const char * m_name
 name of the pricer
 
SPxSolverthesolver
 the solver
 
Real theeps
 violation bound
 

Detailed Description

Steepest edge pricer.

Class SPxSteepPR implements a steepest edge pricer to be used with SoPlex.

See SPxPricer for a class documentation.

Definition at line 41 of file spxsteeppr.h.

Member Enumeration Documentation

enum Setup

How to setup the direction multipliers.

Possible settings are EXACT for starting with exactly computed values, or DEFAULT for starting with multipliers set to 1. The latter is the default.

Enumerator
EXACT 

starting with exactly computed values

DEFAULT 

starting with multipliers set to 1

Definition at line 53 of file spxsteeppr.h.

Constructor & Destructor Documentation

SPxSteepPR ( const char *  name = "Steep",
Setup  mode = DEFAULT 
)

Definition at line 108 of file spxsteeppr.h.

References SPxSteepPR::isConsistent().

Referenced by SPxSteepPR::clone().

SPxSteepPR ( const SPxSteepPR old)

copy constructor

Definition at line 118 of file spxsteeppr.h.

References SPxSteepPR::isConsistent().

virtual ~SPxSteepPR ( )
virtual

destructor

Definition at line 160 of file spxsteeppr.h.

Member Function Documentation

void addedVecs ( int  n)
virtual
void clear ( )
virtual

clear solver and preferences

Reimplemented from SPxPricer.

Definition at line 30 of file spxsteeppr.cpp.

References SPxSteepPR::prefSetup, and SPxPricer::thesolver.

Referenced by SPxHybridPR::clear().

virtual SPxPricer* clone ( ) const
virtual

clone function for polymorphism

Implements SPxPricer.

Reimplemented in SPxSteepExPR.

Definition at line 163 of file spxsteeppr.h.

References SPxSteepPR::SPxSteepPR().

void removedCoVec ( int  i)
virtual

the i'th covector has been removed from the loaded LP.

Reimplemented from SPxPricer.

Definition at line 774 of file spxsteeppr.cpp.

References SPxSteepPR::coPenalty, Vector::dim(), SPxSolver::dim(), SPxSteepPR::prefSetup, DVector::reDim(), and SPxPricer::thesolver.

void removedCoVecs ( const int  perm[])
virtual

n covectors have been removed from loaded LP.

Definition at line 782 of file spxsteeppr.cpp.

References SPxSteepPR::coPenalty, Vector::dim(), SPxSolver::dim(), SPxSteepPR::prefSetup, DVector::reDim(), and SPxPricer::thesolver.

void removedVec ( int  i)
virtual

the i'th vector has been removed from the loaded LP.

Reimplemented from SPxPricer.

Definition at line 751 of file spxsteeppr.cpp.

References SPxSolver::coDim(), Vector::dim(), SPxSteepPR::penalty, SPxSteepPR::prefSetup, DVector::reDim(), and SPxPricer::thesolver.

void removedVecs ( const int  perm[])
virtual

n vectors have been removed from loaded LP.

Definition at line 759 of file spxsteeppr.cpp.

References SPxSolver::coDim(), Vector::dim(), SPxSolver::ENTER, SPxSteepPR::penalty, SPxSteepPR::prefSetup, DVector::reDim(), SPxPricer::thesolver, and SPxSolver::type().

SPxId selectEnterDenseCoDim ( Real best,
SPxId  enterId 
)
SPxId selectEnterDenseDim ( Real best,
SPxId  enterId 
)
SPxId selectEnterSparseDim ( Real best,
SPxId  enterId 
)
void setRep ( SPxSolver::Representation  rep)
virtual

set row/column representation

Reimplemented from SPxPricer.

Definition at line 195 of file spxsteeppr.cpp.

References Vector::clear(), SPxSteepPR::coPenalty, Vector::dim(), SPxSolver::dim(), SPxSteepPR::penalty, DVector::reDim(), SPxPricer::thesolver, and SPxSteepPR::workVec.

Referenced by SPxHybridPR::setRep().

void setupPrefsX ( Real  mult,
Real  ,
Real  ,
Real  shift,
Real  coshift 
)
private

Member Data Documentation

Real accuracy
private

accuracy for computing steepest directions.

Definition at line 87 of file spxsteeppr.h.

Referenced by SPxSteepPR::operator=(), SPxSteepPR::selectEnter(), SPxSteepPR::selectLeave(), SPxSteepPR::selectLeavePart(), and SPxSteepPR::selectLeaveSparse().

Real pi_p
private
Setup setup
private

setup type.

Definition at line 85 of file spxsteeppr.h.

Referenced by SPxSteepPR::isConsistent(), SPxSteepPR::operator=(), and SPxSteepPR::setupWeights().

int startpricing
private

index at which partial pricing should start

Definition at line 89 of file spxsteeppr.h.

Referenced by SPxSteepPR::operator=(), and SPxSteepPR::selectLeavePart().