SoPlex Doxygen Documentation

Semi sparse vector.This class implements Semi Sparse Vectors. Such are DVectors where the indices of its nonzero elements can be stored in an extra IdxSet. Only elements with absolute value > epsilon are considered to be nonzero. Since really storing the nonzeros is not always convenient, an SSVector provides two different stati: setup and not setup. An SSVector being setup means that the nonzero indices are available, otherwise an SSVector is just an ordinary Vector with an empty IdxSet. Note that due to arithmetic operation, zeros can slip in, i.e., it is only guaranteed that at least every non-zero is in the IdxSet. More...

#include <ssvector.h>

Inheritance diagram for SSVector:

Public Member Functions

Status of an SSVector

An SSVector can be set up or not. In case it is set up, its IdxSet correctly contains all indices of nonzero elements of the SSVector. Otherwise, it does not contain any useful data. Whether or not an SSVector is setup can be determined with the method isSetup().

There are three methods for directly affecting the setup status of an SSVector:

  • unSetup(): This method sets the status to ``not setup''.
  • setup(): This method initializes the IdxSet to the SSVector's nonzero indices and sets the status to setup''.
  • forceSetup(): This method sets the status tosetup'' without verifying that the IdxSet correctly contains all nonzero indices. It may be used when the nonzero indices have been computed externally.
Realget_ptr ()
 only used in slufactor.cpp
 
Real getEpsilon () const
 returns the non-zero epsilon used.
 
void setEpsilon (Real eps)
 sets the non-zero epsilon.
 
bool isSetup () const
 returns setup status.
 
void unSetup ()
 makes SSVector not setup.
 
void setup ()
 initializes nonzero indices
 
void forceSetup ()
 forces setup status.
 
Methods for setup SSVectors
int index (int n) const
 returns index of the n 'th nonzero element.
 
Real value (int n) const
 returns value of the n 'th nonzero element.
 
int number (int i) const
 returns the position number of index i, or -1 if i doesn't exist.
 
int size () const
 returns the number of nonzeros.
 
void add (int i, Real x)
 adds nonzero (i, x) to SSVector.
 
void setValue (int i, Real x)
 sets i 'th element to x.
 
void clearIdx (int i)
 clears element i.
 
void clearNum (int n)
 sets n 'th nonzero element to 0 (index n must exist!).
 
Methods independent of the Status
Real operator[] (int i) const
 returns i 'th value.
 
const int * indexMem () const
 returns array indices.
 
const Realvalues () const
 returns array values.
 
const IdxSetindices () const
 returns indices.
 
int * altIndexMem ()
 returns array indices.
 
RealaltValues ()
 returns array values.
 
IdxSetaltIndices ()
 returns indices.
 
Mathematical operations
SSVectoroperator+= (const Vector &vec)
 
SSVectoroperator+= (const SVector &vec)
 
SSVectoroperator+= (const SSVector &vec)
 vector summation.
 
SSVectoroperator-= (const Vector &vec)
 
SSVectoroperator-= (const SVector &vec)
 
SSVectoroperator-= (const SSVector &vec)
 vector subtraction.
 
SSVectoroperator*= (Real x)
 vector scaling.
 
SSVectormultAdd (Real x, const SVector &vec)
 
SSVectormultAdd (Real x, const Vector &vec)
 adds scaled vector (+= x * vec).
 
SSVectorassign2product (const SSVector &x, const SVSet &A)
 assigns SSVector to $x^T \cdot A$.
 
SSVectorassign2product4setup (const SVSet &A, const SSVector &x)
 assigns SSVector to $A \cdot x$ for a setup x.
 
SSVectorassign2productAndSetup (const SVSet &A, SSVector &x)
 assigns SSVector to $A \cdot x$ thereby setting up x.
 
Real maxAbs () const
 returns infinity norm of a Vector.
 
Real length () const
 returns euclidian norm of a Vector.
 
Real length2 () const
 returns squared norm of a Vector.
 
Miscellaneous
int dim () const
 returns dimension of Vector.
 
void reDim (int newdim)
 resets dimension to newdim.
 
void setSize (int n)
 sets number of nonzeros (thereby unSetup SSVector).
 
void reMem (int newsize)
 resets memory consumption to newsize.
 
void clear ()
 clears vector.
 
bool isConsistent () const
 consistency check.
 
Constructors / Destructors
 SSVector (int p_dim, Real p_eps=Param::epsilon())
 constructor.
 
 SSVector (const SSVector &vec)
 copy constructor.
 
 SSVector (const Vector &vec, Real eps=Param::epsilon())
 constructs nonsetup copy of vec.
 
void setup_and_assign (SSVector &rhs)
 sets up rhs vector, and assigns it.
 
SSVectorassign (const SVector &rhs)
 assign only the elements of rhs.
 
SSVectoroperator= (const SSVector &rhs)
 assignment operator
 
SSVectoroperator= (const SVector &rhs)
 assignment operator
 
SSVectoroperator= (const Vector &rhs)
 assignment operator
 
 ~SSVector ()
 destructor
 

Private Member Functions

Private helpers
SSVectorassign2product1 (const SVSet &A, const SSVector &x)
 
SSVectorassign2productShort (const SVSet &A, const SSVector &x)
 
SSVectorassign2productFull (const SVSet &A, const SSVector &x)
 

Friends

class DVector
 
class Vector
 
class DSVector
 

Data

bool setupStatus
 Is the SSVector set up?
 
Real epsilon
 A value x with |x| < epsilon is considered zero.
 
void setMax (int newmax)
 Allocates enough space to accommodate newmax values.
 

Additional Inherited Members

- Protected Member Functions inherited from DVector
void reDim (int newdim)
 resets DVector's dimension to newdim.
 
void reSize (int newsize)
 resets DVector's memory size to newsize.
 
void reSize (int newsize, int newdim)
 resets DVector's memory size to newsize and dimension to newdim.
 
int memSize () const
 returns DVector's memory size.
 
bool isConsistent () const
 consistency check.
 
 DVector (int dim=0)
 default constructor. dim is the initial dimension.
 
 DVector (const Vector &old)
 copy constructor.
 
 DVector (const Vector_exact &old)
 cast from exact vector.
 
 DVector (const DVector &old)
 copy constructor.
 
DVectoroperator= (const Vector &vec)
 assignment operator.
 
DVectoroperator= (const DVector &vec)
 assignment operator.
 
DVectoroperator= (const SVector &vec)
 assingment operator.
 
 ~DVector ()
 destructor.
 
- Protected Member Functions inherited from IdxSet
 IdxSet (int n, int imem[], int l=0)
 constructor.
 
 IdxSet ()
 default constructor.
 
 ~IdxSet ()
 destructor.
 
IdxSetoperator= (const IdxSet &set)
 assignment operator.
 
 IdxSet (const IdxSet &)
 copy constructor.
 
int index (int n) const
 access n 'th index.
 
int size () const
 returns the number of used indices.
 
int max () const
 returns the maximal number of indices which can be stored in IdxSet.
 
int dim () const
 returns the maximal index.
 
int number (int i) const
 returns the position number of index i.
 
void add (int n)
 appends n uninitialized indices.
 
void add (const IdxSet &set)
 appends all indices of set.
 
void add (int n, const int i[])
 appends n indices in i.
 
void addIdx (int i)
 appends index i.
 
void remove (int n, int m)
 removes indices at position numbers n through m.
 
void remove (int n)
 removes n 'th index.
 
void clear ()
 removes all indices.
 
bool isConsistent () const
 consistency check.
 

Detailed Description

Semi sparse vector.

This class implements Semi Sparse Vectors. Such are DVectors where the indices of its nonzero elements can be stored in an extra IdxSet. Only elements with absolute value > epsilon are considered to be nonzero. Since really storing the nonzeros is not always convenient, an SSVector provides two different stati: setup and not setup. An SSVector being setup means that the nonzero indices are available, otherwise an SSVector is just an ordinary Vector with an empty IdxSet. Note that due to arithmetic operation, zeros can slip in, i.e., it is only guaranteed that at least every non-zero is in the IdxSet.

Definition at line 49 of file ssvector.h.

Constructor & Destructor Documentation

SSVector ( int  p_dim,
Real  p_eps = Param::epsilon() 
)
explicit

constructor.

Definition at line 341 of file ssvector.h.

References Vector::clear(), IdxSet::idx, SSVector::isConsistent(), IdxSet::len, and soplex::spx_alloc().

SSVector ( const SSVector vec)

copy constructor.

Definition at line 356 of file ssvector.h.

References SSVector::dim(), IdxSet::idx, SSVector::isConsistent(), IdxSet::len, IdxSet::operator=(), and soplex::spx_alloc().

SSVector ( const Vector vec,
Real  eps = Param::epsilon() 
)
explicit

constructs nonsetup copy of vec.

TODO:

Todo:
Is there an IdxSet::operator=( vec ) missing here?

Definition at line 370 of file ssvector.h.

References Vector::dim(), IdxSet::idx, SSVector::isConsistent(), IdxSet::len, and soplex::spx_alloc().

~SSVector ( )

destructor

Definition at line 401 of file ssvector.h.

References IdxSet::idx, and soplex::spx_free().

Member Function Documentation

void add ( int  i,
Real  x 
)

adds nonzero (i, x) to SSVector.

No nonzero with index i must exist in the SSVector.

Definition at line 172 of file ssvector.h.

References IdxSet::addIdx(), SSVector::number(), and Vector::val.

IdxSet& altIndices ( )

returns indices.

Definition at line 252 of file ssvector.h.

References SSVector::unSetup().

SSVector & assign2product ( const SSVector x,
const SVSet A 
)
void clearIdx ( int  i)
void clearNum ( int  n)

sets n 'th nonzero element to 0 (index n must exist!).

Definition at line 198 of file ssvector.h.

References SSVector::index(), SSVector::isConsistent(), SSVector::isSetup(), and Vector::val.

Referenced by SPxDefaultRT::selectEnter(), SPxHarrisRT::selectEnter(), SPxHarrisRT::selectLeave(), and SSVector::setValue().

Real* get_ptr ( )

only used in slufactor.cpp

Definition at line 91 of file ssvector.h.

References Vector::get_ptr().

Referenced by SLUFactor::solve2right4update(), and SLUFactor::solve3right4update().

Real getEpsilon ( ) const
const IdxSet& indices ( ) const

returns indices.

Definition at line 232 of file ssvector.h.

Referenced by UpdateVector::idx(), SPxSolver::perturbMax(), and SPxSolver::perturbMin().

Real length ( ) const

returns euclidian norm of a Vector.

Definition at line 354 of file ssvector.cpp.

References SSVector::length2().

Referenced by SPxSolver::leave().

Real length2 ( ) const
Real maxAbs ( ) const

returns infinity norm of a Vector.

Definition at line 320 of file ssvector.cpp.

References IdxSet::idx, SSVector::isSetup(), Vector::maxAbs(), IdxSet::num, REAL, and Vector::val.

SSVector & multAdd ( Real  x,
const Vector vec 
)

adds scaled vector (+= x * vec).

Definition at line 513 of file ssvector.cpp.

References SSVector::isSetup(), Vector::multAdd(), SSVector::setup(), and SSVector::setupStatus.

int number ( int  i) const

returns the position number of index i, or -1 if i doesn't exist.

Definition at line 156 of file ssvector.h.

References SSVector::isSetup(), and IdxSet::number().

Referenced by SSVector::add(), SSVector::clearIdx(), SSVector::isConsistent(), and SSVector::setValue().

SSVector & operator*= ( Real  x)

vector scaling.

Definition at line 308 of file ssvector.cpp.

References SSVector::index(), SSVector::isConsistent(), SSVector::isSetup(), SSVector::size(), and Vector::val.

SSVector & operator+= ( const Vector vec)
SSVector & operator+= ( const SVector vec)
SSVector & operator+= ( const SSVector vec)
SSVector & operator-= ( const Vector vec)
SSVector & operator-= ( const SVector vec)
SSVector & operator= ( const SVector rhs)

assignment operator

Definition at line 616 of file ssvector.cpp.

References SSVector::assign(), and SSVector::clear().

SSVector& operator= ( const Vector rhs)

assignment operator

Definition at line 392 of file ssvector.h.

References SSVector::isConsistent(), Vector::operator=(), and SSVector::unSetup().

Real operator[] ( int  i) const

returns i 'th value.

Definition at line 214 of file ssvector.h.

References Vector::val.

void reMem ( int  newsize)

resets memory consumption to newsize.

Definition at line 59 of file ssvector.cpp.

References SSVector::isConsistent(), DVector::memSize(), DVector::reSize(), and SSVector::setMax().

void setEpsilon ( Real  eps)

sets the non-zero epsilon.

This invalidates the setup.

Definition at line 103 of file ssvector.h.

References SSVector::epsilon, and SSVector::setupStatus.

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

void setMax ( int  newmax)
private

Allocates enough space to accommodate newmax values.

Definition at line 37 of file ssvector.cpp.

References IdxSet::idx, IdxSet::len, IdxSet::size(), and soplex::spx_realloc().

Referenced by SSVector::operator=(), SSVector::reDim(), SSVector::reMem(), and SSVector::setup_and_assign().

Real value ( int  n) const

returns value of the n 'th nonzero element.

Definition at line 148 of file ssvector.h.

References IdxSet::idx, SSVector::isSetup(), SSVector::size(), and Vector::val.

Referenced by Vector::operator+=(), SSVector::operator+=(), Vector::operator-=(), and SSVector::operator-=().

Friends And Related Function Documentation

friend class DSVector
friend

Definition at line 55 of file ssvector.h.

friend class DVector
friend

Definition at line 53 of file ssvector.h.

friend class Vector
friend

Definition at line 54 of file ssvector.h.

Member Data Documentation