SoPlex Doxygen Documentation

Dynamic sparse vectors.Class DSVector implements dynamic sparse vectors, i.e. SVectors with an automatic memory management. This allows the user to freely add() as many nonzeros to a DSVector as desired, without any precautions. For saving memory method setMax() allows to reduce memory consumption to the amount really required. More...

#include <dsvector.h>

Inheritance diagram for DSVector:

Public Member Functions

Construction / destruction
 DSVector (int n=8)
 default constructor.
 
 ~DSVector ()
 destructor.
 
 DSVector (const Vector &vec)
 copy constructor from vector.
 
 DSVector (const SVector &old)
 copy constructor from sparse vector.
 
 DSVector (const SSVector &old)
 copy constructor from semi sparse vector.
 
 DSVector (const DSVector &old)
 copy constructor from DSVector.
 
DSVectoroperator= (const SSVector &sv)
 assignment operator from semi sparse vector.
 
DSVectoroperator= (const SVector &sv)
 assignment operator from sparse vector.
 
DSVectoroperator= (const DSVector &sv)
 assignment operator.
 
DSVectoroperator= (const Vector &vec)
 assignment operator from vector.
 
Adding nonzeros
void add (const SVector &sv)
 append nonzeros of sv.
 
void add (int i, Real v)
 append one nonzero (i,v).
 
void add (int n, const int i[], const Real v[])
 append n nonzeros.
 
void setMax (int newmax=1)
 reset nonzero memory to >= newmax.
 
Consistency check
bool isConsistent () const
 consistency check.
 
- Public Member Functions inherited from SVector
void add (int i, Real v)
 append one nonzero (i,v).
 
void add (const SVector &sv)
 append nonzeros of sv.
 
void add (int n, const int i[], const Real v[])
 append n nonzeros.
 
void add (int n, const Element e[])
 append n nonzeros.
 
void remove (int n, int m)
 remove nonzeros n thru m.
 
void remove (int n)
 remove n 'th nonzero.
 
void clear ()
 remove all indices.
 
void sort ()
 sort nonzeros to increasing indices.
 
int size () const
 number of used indices.
 
int max () const
 maximal number indices.
 
int dim () const
 dimension of the vector: maximal index + 1
 
int number (int i) const
 Number of index i.
 
Real operator[] (int i) const
 get value to index i.
 
Elementelement (int n)
 get reference to the n 'th nonzero element.
 
const Elementelement (int n) const
 get n 'th nonzero element.
 
int & index (int n)
 get reference to index of n 'th nonzero.
 
int index (int n) const
 get index of n 'th nonzero.
 
Realvalue (int n)
 get reference to value of n 'th nonzero.
 
Real value (int n) const
 get value of n 'th nonzero.
 
Real maxAbs () const
 infinity norm.
 
Real minAbs () const
 the absolut smalest element in the vector.
 
Real length () const
 eucledian norm.
 
Real length2 () const
 squared eucledian norm.
 
SVectoroperator*= (Real x)
 scale with x.
 
Real operator* (const Vector &w) const
 inner product.
 
SVectoroperator= (const SSVector &sv)
 assignment operator from semi sparse vector.
 
SVectoroperator= (const SVector &sv)
 assignment operator.
 
SVectoroperator= (const Vector &sv)
 assignment operator from vector.
 
 SVector (int n=0, Element *p_mem=0)
 default constructor.
 
 ~SVector ()
 destructor
 
Elementmem () const
 get pointer to internal memory.
 
void set_size (int s)
 set the size of the Vector,
 
void set_max (int m)
 set the maximum number of nonzeros in the Vector.
 
void setMem (int n, Element *elmem)
 set the memory area where the nonzeros will be stored.
 
bool isConsistent () const
 consistency check.
 

Private Member Functions

Private memory helpers
void allocMem (int n)
 allocate memory for n nonzeros.
 
void makeMem (int n)
 make sure there is room for n new nonzeros.
 

Private Attributes

Data
Element * theelem
 here is where the memory is
 

Friends

class SLinSolver
 

Detailed Description

Dynamic sparse vectors.

Class DSVector implements dynamic sparse vectors, i.e. SVectors with an automatic memory management. This allows the user to freely add() as many nonzeros to a DSVector as desired, without any precautions. For saving memory method setMax() allows to reduce memory consumption to the amount really required.

Todo:
Both DSVector and SVector have a member variable that points to allocated memory. This does not seem to make too much sense. Why doesn't DSVector use the element of its base class?

Definition at line 43 of file dsvector.h.

Constructor & Destructor Documentation

DSVector ( int  n = 8)
explicit

default constructor.

Creates a DSVector ready to hold n nonzeros. However, the memory is automatically enlarged, if more nonzeros are added to the DSVector.

Definition at line 30 of file dsvector.cpp.

References DSVector::allocMem(), and DSVector::isConsistent().

~DSVector ( )

destructor.

Definition at line 38 of file dsvector.cpp.

References soplex::spx_free(), and DSVector::theelem.

DSVector ( const Vector vec)
explicit

copy constructor from vector.

Definition at line 44 of file dsvector.cpp.

References DSVector::allocMem(), Vector::dim(), and DSVector::isConsistent().

DSVector ( const SVector old)
explicit

copy constructor from sparse vector.

Definition at line 53 of file dsvector.cpp.

References DSVector::allocMem(), DSVector::isConsistent(), SVector::operator=(), and SVector::size().

DSVector ( const SSVector old)
explicit

copy constructor from semi sparse vector.

Definition at line 62 of file dsvector.cpp.

References DSVector::allocMem(), DSVector::isConsistent(), SVector::operator=(), and SSVector::size().

DSVector ( const DSVector old)

copy constructor from DSVector.

Definition at line 71 of file dsvector.cpp.

References DSVector::allocMem(), DSVector::isConsistent(), SVector::operator=(), and SVector::size().

Member Function Documentation

void add ( int  i,
Real  v 
)

append one nonzero (i,v).

Definition at line 137 of file dsvector.h.

References SVector::add(), and DSVector::makeMem().

void add ( int  n,
const int  i[],
const Real  v[] 
)

append n nonzeros.

Definition at line 144 of file dsvector.h.

References SVector::add(), and DSVector::makeMem().

void allocMem ( int  n)
private

allocate memory for n nonzeros.

Definition at line 96 of file dsvector.cpp.

References SVector::setMem(), soplex::spx_alloc(), and DSVector::theelem.

Referenced by DSVector::DSVector().

bool isConsistent ( ) const

consistency check.

Definition at line 116 of file dsvector.cpp.

References SVector::mem(), MSGinconsistent, and DSVector::theelem.

Referenced by DSVector::DSVector(), LPCol::isConsistent(), LPRow::isConsistent(), and DSVector::operator=().

void makeMem ( int  n)
private

make sure there is room for n new nonzeros.

Definition at line 61 of file dsvector.h.

References SVector::max(), DSVector::setMax(), and SVector::size().

Referenced by DSVector::add(), and DSVector::operator=().

DSVector& operator= ( const SSVector sv)

assignment operator from semi sparse vector.

Definition at line 91 of file dsvector.h.

References SVector::clear(), DSVector::makeMem(), SVector::operator=(), and SSVector::size().

DSVector& operator= ( const SVector sv)

assignment operator from sparse vector.

Definition at line 100 of file dsvector.h.

References SVector::clear(), DSVector::makeMem(), SVector::operator=(), and SVector::size().

DSVector& operator= ( const DSVector sv)

assignment operator.

Definition at line 109 of file dsvector.h.

References SVector::clear(), DSVector::makeMem(), SVector::operator=(), and SVector::size().

DSVector & operator= ( const Vector vec)

assignment operator from vector.

Definition at line 81 of file dsvector.cpp.

References SVector::clear(), Vector::dim(), DSVector::isConsistent(), SVector::operator=(), and DSVector::setMax().

void setMax ( int  newmax = 1)

reset nonzero memory to >= newmax.

This methods resets the memory consumption of the DIdxSet to newmax. However, if newmax < size(), it is reset to size() only.

Definition at line 102 of file dsvector.cpp.

References SVector::set_size(), SVector::setMem(), SVector::size(), soplex::spx_realloc(), and DSVector::theelem.

Referenced by SPxSolver::enter(), SPxSolver::leave(), DSVector::makeMem(), and DSVector::operator=().

Friends And Related Function Documentation

friend class SLinSolver
friend

Definition at line 45 of file dsvector.h.

Member Data Documentation

Element* theelem
private

here is where the memory is

Definition at line 52 of file dsvector.h.

Referenced by DSVector::allocMem(), DSVector::isConsistent(), DSVector::setMax(), and DSVector::~DSVector().