SoPlex Doxygen Documentation

Dense vectorClass Vector provides dense linear algebra vectors. It does not provide memory management for the array of values. Instead, the constructor requires a pointer to a memory block large enough to fit the desired dimension of Real values. More...

#include <vector.h>

Inheritance diagram for Vector:

Public Member Functions

Construction and assignment
 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.
 
Access
int dim () const
 dimension of vector
 
Realoperator[] (int n)
 return n 'th value by reference
 
Real operator[] (int n) const
 return n 'th value
 
Algebraic methods
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
 

Protected Attributes

Data
int dimen
 dimension of vector
 
Realval
 values of a vector
 

Private Member Functions

Blocked
 Vector ()
 we have no default constructor.
 

Utilities

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.
 
std::ostream & operator<< (std::ostream &s, const Vector &vec)
 output operator.
 

Detailed Description

Dense vector

Class Vector provides dense linear algebra vectors. It does not provide memory management for the array of values. Instead, the constructor requires a pointer to a memory block large enough to fit the desired dimension of Real values.

After construction, the values of a Vector can be accessed with the subscript operator[]() . Safety is provided by

  • checking of array bound when accessing elements with the subscript operator[]() (only when compiled without -DNDEBUG).

A Vector is distinguished from a simple array of Reals by providing a set of mathematical operations. Since Vector does not provide any memory management features, no operations are available that would require allocation of temporary memory space.

The following mathematical operations are provided by class Vector (Vector a, b; Real x):

OperationDescription  
-= subtraction a -= b
+= addition a += b
* scalar product x = a * b
*= scaling a *= x
maxAbs() infinity norm a.maxAbs() == $\|a\|_{\infty}$
minAbs()

a.minAbs() == $\min |a_i|$

length() euclidian norm a.length() == $\sqrt{a^2}$
length2()square norm a.length2() == $a^2$
multAdd(x,b)add scaled vector a += x * b

When using any of these operations, the vectors involved must be of the same dimension. Also an SVector b is allowed if it does not contain nonzeros with index greater than the dimension of a.

Definition at line 82 of file vector.h.

Constructor & Destructor Documentation

Vector ( int  p_dimen,
Real p_val 
)

construction

There is no default constructor since the storage for a Vector must be provided externally. Storage must be passed as a memory block val at construction. It must be large enough to fit at least dimen Real values.

Definition at line 109 of file vector.h.

References Vector::dimen, and Vector::isConsistent().

Vector ( )
private

we have no default constructor.

Referenced by SSVector::operator-=().

Member Function Documentation

Vector & assign ( const SVector sv)

Assign values of sv.

Assigns all nonzeros of sv to the vector. All other values remain unchanged.

Definition at line 62 of file vector.cpp.

References SVector::index(), Vector::isConsistent(), SVector::size(), Vector::val, and SVector::value().

Referenced by Vector::operator=(), and SLUFactor::solveRight().

Vector & assign ( const SSVector sv)

Assign values of sv.

Assigns all nonzeros of sv to the vector. All other values remain unchanged.

Definition at line 450 of file ssvector.h.

References Vector::dim(), SSVector::dim(), SSVector::indexMem(), SSVector::isSetup(), Vector::operator=(), SSVector::size(), and Vector::val.

int dim ( ) const

dimension of vector

Definition at line 153 of file vector.h.

References Vector::dimen.

Referenced by LPColSet::add(), LPRowSet::add(), SPxDevexPR::addedCoVecs(), SPxWeightPR::addedCoVecs(), SPxSteepPR::addedCoVecs(), SPxDevexPR::addedVecs(), SPxWeightPR::addedVecs(), SPxSteepPR::addedVecs(), Vector::assign(), SSVector::assign(), SPxLP::changeLhs(), SPxLP::changeLower(), SPxSolver::changeLower(), SPxLP::changeObj(), SPxLP::changeRhs(), SPxLP::changeUpper(), SPxSolver::changeUpper(), LPColSet::create(), LPRowSet::create(), DSVector::DSVector(), DVector::DVector(), DVector_exact::DVector_exact(), SPxWeightST::generate(), SPxDevexPR::init(), SPxDevexPR::isConsistent(), SPxWeightPR::isConsistent(), UpdateVector::isConsistent(), Vector::isConsistent(), SSVector::isConsistent(), LPColSet::isConsistent(), LPRowSet::isConsistent(), SPxSolver::isConsistent(), Vector::maxAbs(), SPxFastRT::maxDelta(), Vector::minAbs(), SPxFastRT::minDelta(), Vector::multAdd(), SPxBasis::multBaseWith(), SPxBasis::multWithBase(), soplex::operator*(), Vector::operator*(), Vector::operator*=(), soplex::operator+(), Vector_exact::operator+=(), Vector::operator+=(), soplex::operator-(), Vector_exact::operator-=(), Vector::operator-=(), soplex::operator<<(), Vector_exact::operator=(), DVector_exact::operator=(), Vector::operator=(), DSVector::operator=(), DVector::operator=(), SVector::operator=(), soplex::operator>>(), SPxSolver::perturbMax(), SPxSolver::perturbMin(), SPxWeightPR::removedCoVec(), SPxSteepPR::removedCoVec(), SPxWeightPR::removedCoVecs(), SPxSteepPR::removedCoVecs(), SPxWeightPR::removedVec(), SPxSteepPR::removedVec(), SPxWeightPR::removedVecs(), SPxSteepPR::removedVecs(), DVector::reSize(), SPxDevexPR::selectEnterDenseCoDim(), SPxDevexPR::selectEnterDenseDim(), SPxDevexPR::selectEnterSparseCoDim(), SPxDevexPR::selectEnterSparseDim(), SPxDevexPR::selectLeavePart(), SPxDevexPR::selectLeaveX(), SPxSteepPR::setRep(), SPxSolver::setupPupdate(), SPxVectorST::setupWeights(), SPxWeightST::setupWeights(), SSVector::setValue(), SSVector::SSVector(), SPxScaler::unscaleDual(), SPxScaler::unscalePrimal(), SPxScaler::unscaleRedCost(), SPxScaler::unscaleSlacks(), and SPxMainSM::unsimplify().

Real* get_ptr ( )

Conversion to C-style pointer.

This function serves for using a Vector in an C-style function. It returns a pointer to the first value of the array.

Todo:
check whether this non-const c-style acces should indeed be public

Definition at line 240 of file vector.h.

References Vector::val.

Referenced by SLUFactor::assign(), SLUFactor::change(), SPxSteepPR::entered4(), SSVector::get_ptr(), SPxSteepPR::left4(), SLUFactor::load(), SPxSumST::setupWeights(), SLUFactor::SLUFactor(), SLUFactor::solve2right4update(), SLUFactor::solve3right4update(), SLUFactor::solveLeft(), and SLUFactor::solveRight().

bool isConsistent ( ) const

consistency check.

Definition at line 196 of file vector.cpp.

References Vector::dim(), MSGinconsistent, and Vector::val.

Referenced by Vector::assign(), DVector::isConsistent(), SPxSolver::leave(), Vector::operator=(), and Vector::Vector().

Real length2 ( ) const

squared norm.

Definition at line 145 of file vector.cpp.

Referenced by SPxSteepPR::isConsistent(), Vector::length(), SSVector::length2(), and SPxSteepPR::setupWeights().

Real maxAbs ( ) const

absolute biggest element (infinity norm).

Definition at line 150 of file vector.cpp.

References Vector::dim(), and Vector::val.

Referenced by SSVector::maxAbs(), and SPxWeightST::setupWeights().

Real minAbs ( ) const

absolute smallest element.

Definition at line 163 of file vector.cpp.

References Vector::dim(), soplex::infinity, and Vector::val.

Vector & multAdd ( Real  x,
const SVector vec 
)

addition of scaled vector

multiply Vector with and add a SVector.

This is located in svector.h because it should be inlined and because of the cross dependencies of Vector and SVector.

Todo:
Can we move this function to a better place?

Definition at line 398 of file svector.h.

References Vector::dim(), SVector::dim(), SVector::Element::idx, SVector::m_elem, SVector::size(), Vector::val, and SVector::Element::val.

Referenced by SPxSolver::computeFrhs1(), SPxSolver::computeFrhsXtra(), SPxSolver::enter(), SPxSolver::leave(), SSVector::multAdd(), SPxBasis::multBaseWith(), SPxSumST::setupWeights(), and UpdateVector::update().

Vector & multAdd ( Real  x,
const SSVector svec 
)

addition of scaled vector

Definition at line 427 of file ssvector.h.

References Vector::dim(), SSVector::dim(), SSVector::indexMem(), SSVector::isSetup(), SSVector::size(), and Vector::val.

Vector& multAdd ( Real  x,
const Vector vec 
)

addition of scaled vector

Definition at line 220 of file vector.h.

References Vector::dim(), Vector::dimen, and Vector::val.

Real operator* ( const SSVector v) const

inner product.

Definition at line 483 of file ssvector.h.

References Vector::dim(), SSVector::dim(), SSVector::indexMem(), SSVector::isSetup(), SSVector::size(), and Vector::val.

Real operator* ( const SVector v) const

inner product.

Definition at line 186 of file vector.cpp.

References Vector::dim(), SVector::dim(), SVector::index(), SVector::size(), Vector::val, and SVector::value().

Real operator* ( const Vector v) const

inner product.

Definition at line 197 of file vector.h.

References Vector::dim(), Vector::dimen, and Vector::val.

Vector & operator*= ( Real  x)

scaling

Definition at line 132 of file vector.cpp.

References Vector::dim(), and Vector::val.

Vector & operator+= ( const Vector vec)

vector addition

Definition at line 72 of file vector.cpp.

References Vector::dim(), and Vector::val.

Referenced by SSVector::operator+=().

Vector & operator+= ( const SVector vec)

vector addition

Definition at line 80 of file vector.cpp.

References Vector::dim(), SVector::index(), SVector::size(), Vector::val, and SVector::value().

Vector & operator+= ( const SSVector vec)

vector addition

Definition at line 91 of file vector.cpp.

References Vector::dim(), SSVector::index(), SSVector::size(), Vector::val, and SSVector::value().

Vector & operator-= ( const Vector vec)

vector difference

Definition at line 102 of file vector.cpp.

References Vector::dim(), and Vector::val.

Referenced by SSVector::operator-=().

Vector & operator-= ( const SVector vec)

vector difference

Definition at line 110 of file vector.cpp.

References Vector::dim(), SVector::index(), SVector::size(), Vector::val, and SVector::value().

Vector & operator-= ( const SSVector vec)

vector difference

Definition at line 121 of file vector.cpp.

References Vector::dim(), SSVector::index(), SSVector::size(), Vector::val, and SSVector::value().

Vector & operator= ( const Vector vec)
Vector & operator= ( const SVector vec)

Assignment operator.

Assigning a SVector to a Vector using operator=() will set all values to 0 except the nonzeros of vec. This is diffent in method assign().

Definition at line 38 of file vector.cpp.

References Vector::assign(), Vector::clear(), and Vector::isConsistent().

Vector & operator= ( const SSVector vec)

Assignment operator.

Assigning a SSVector to a Vector using operator=() will set all values to 0 except the nonzeros of vec. This is diffent in method assign().

Definition at line 470 of file ssvector.h.

References Vector::assign(), Vector::clear(), SSVector::isSetup(), and Vector::operator=().

Vector & operator= ( const Vector_exact vec)

Assignment operator.

Definition at line 48 of file vector.cpp.

References Vector_exact::dim(), Vector::dim(), soplex::get_d(), Vector::isConsistent(), and Vector::val.

Real& operator[] ( int  n)

return n 'th value by reference

Definition at line 158 of file vector.h.

References Vector::dimen, and Vector::val.

Real operator[] ( int  n) const

return n 'th value

Definition at line 165 of file vector.h.

References Vector::dimen, and Vector::val.

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  s,
const Vector vec 
)
friend

output operator.

Definition at line 176 of file vector.cpp.

Member Data Documentation