SoPlex Doxygen Documentation
UpdateVector Class Reference

Dense vector with semi-sparse vector for updatesIn many algorithms vectors are updated in every iteration, by adding a multiple of another vector to it, i.e., given a vector x, a scalar $\alpha$ and another vector $\delta$, the update to x constists of substituting it by $x \leftarrow x + \alpha\cdot\delta$. More...

#include <updatevector.h>

Inheritance diagram for UpdateVector:

Public Member Functions

Constructors / destructors
 UpdateVector (int p_dim, Real p_eps)
 default constructor.
 
 ~UpdateVector ()
 
 UpdateVector (const UpdateVector &)
 copy constructor
 
UpdateVectoroperator= (const DVector &rhs)
 assignment from DVector
 
UpdateVectoroperator= (const Vector &rhs)
 assignment from Vector
 
UpdateVectoroperator= (const UpdateVector &rhs)
 assignment
 
Access
Realvalue ()
 update multiplicator $\alpha$, writeable
 
Real value () const
 update multiplicator $\alpha$
 
SSVectordelta ()
 update vector $\delta$, writeable
 
const SSVectordelta () const
 update vector $\delta$
 
const IdxSetidx () const
 nonzero indices of update vector $\delta$
 
Modification
void update ()
 Perform the update.
 
void clear ()
 clear vector and update vector
 
void clearUpdate ()
 clear $\delta$, $\alpha$
 
void reDim (int newdim)
 reset dimension
 
Consistency check
bool isConsistent () const
 
- Public 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.
 
- Public Member Functions inherited from Vector
 Vector (int p_dimen, Real *p_val)
 construction
 
Vectoroperator= (const Vector &vec)
 Assignment operator.
 
Vectoroperator= (const SVector &vec)
 Assignment operator.
 
Vectoroperator= (const SSVector &vec)
 Assignment operator.
 
Vectoroperator= (const Vector_exact &vec)
 Assignment operator.
 
Vectorassign (const SVector &sv)
 Assign values of sv.
 
Vectorassign (const SSVector &sv)
 Assign values of sv.
 
int dim () const
 dimension of vector
 
Realoperator[] (int n)
 return n 'th value by reference
 
Real operator[] (int n) const
 return n 'th value
 
Vectoroperator+= (const Vector &vec)
 vector addition
 
Vectoroperator+= (const SVector &vec)
 vector addition
 
Vectoroperator+= (const SSVector &vec)
 vector addition
 
Vectoroperator-= (const Vector &vec)
 vector difference
 
Vectoroperator-= (const SVector &vec)
 vector difference
 
Vectoroperator-= (const SSVector &vec)
 vector difference
 
Vectoroperator*= (Real x)
 scaling
 
Real operator* (const SSVector &v) const
 inner product.
 
Real operator* (const SVector &v) const
 inner product.
 
Real operator* (const Vector &v) const
 inner product.
 
Real maxAbs () const
 absolute biggest element (infinity norm).
 
Real minAbs () const
 absolute smallest element.
 
Real length () const
 euclidian norm.
 
Real length2 () const
 squared norm.
 
VectormultAdd (Real x, const SVector &vec)
 addition of scaled vector
 
VectormultAdd (Real x, const SSVector &svec)
 addition of scaled vector
 
VectormultAdd (Real x, const Vector &vec)
 addition of scaled vector
 
Realget_ptr ()
 Conversion to C-style pointer.
 
const Realget_const_ptr () const
 Conversion to C-style pointer.
 
bool isConsistent () const
 consistency check.
 
void clear ()
 set vector to 0.
 

Private Attributes

Data
Real theval
 update multiplicator
 
SSVector thedelta
 update vector
 

Additional Inherited Members

- Protected Attributes inherited from Vector
int dimen
 dimension of vector
 
Realval
 values of a vector
 
Arithmetic operations (friends)
I/O

Detailed Description

Dense vector with semi-sparse vector for updates

In many algorithms vectors are updated in every iteration, by adding a multiple of another vector to it, i.e., given a vector x, a scalar $\alpha$ and another vector $\delta$, the update to x constists of substituting it by $x \leftarrow x + \alpha\cdot\delta$.

While the update itself can easily be expressed with methods of the class Vector, it is often desirable to save the last update vector $\delta$ and value $\alpha$. This is provided by class UpdateVector.

UpdateVectors are derived from DVector and provide additional methods for saving and setting the multiplicator $\alpha$ and the update vector $\delta$. Further, it allows for efficient sparse updates, by providing an IdxSet idx() containing the nonzero indices of $\delta$.

Definition at line 53 of file updatevector.h.

Constructor & Destructor Documentation

UpdateVector ( int  p_dim,
Real  p_eps 
)
explicit

default constructor.

Definition at line 71 of file updatevector.h.

References UpdateVector::isConsistent().

Definition at line 79 of file updatevector.h.

UpdateVector ( const UpdateVector base)

copy constructor

Definition at line 34 of file updatevector.cpp.

References UpdateVector::isConsistent().

Member Function Documentation

void clear ( )

clear vector and update vector

Definition at line 153 of file updatevector.h.

References Vector::clear(), and UpdateVector::clearUpdate().

Referenced by SPxSolver::clear().

void clearUpdate ( )
const SSVector& delta ( ) const

update vector $\delta$

Definition at line 127 of file updatevector.h.

References UpdateVector::thedelta.

UpdateVector& operator= ( const DVector rhs)

assignment from DVector

Definition at line 84 of file updatevector.h.

References UpdateVector::isConsistent(), and DVector::operator=().

UpdateVector& operator= ( const Vector rhs)

assignment from Vector

Definition at line 94 of file updatevector.h.

References UpdateVector::isConsistent(), and DVector::operator=().

UpdateVector & operator= ( const UpdateVector rhs)
void reDim ( int  newdim)

reset dimension

Definition at line 167 of file updatevector.h.

References DVector::reDim(), SSVector::reDim(), and UpdateVector::thedelta.

Referenced by SPxSolver::reDim().

void update ( )

Perform the update.

Add value() * delta() to the UpdateVector. Only the indices in idx() are affected. For all other indices, delta() is asumed to be 0.

Definition at line 147 of file updatevector.h.

References Vector::multAdd(), UpdateVector::thedelta, and UpdateVector::theval.

Referenced by SPxSolver::doPupdate(), SPxSolver::enter(), and SPxSolver::leave().

Real& value ( )

update multiplicator $\alpha$, writeable

Definition at line 111 of file updatevector.h.

References UpdateVector::theval.

Referenced by SPxSolver::enter(), and SPxSolver::leave().

Real value ( ) const

update multiplicator $\alpha$

Definition at line 116 of file updatevector.h.

References UpdateVector::theval.

Member Data Documentation

Real theval
private

update multiplicator

Definition at line 60 of file updatevector.h.

Referenced by UpdateVector::clearUpdate(), UpdateVector::operator=(), UpdateVector::update(), and UpdateVector::value().