28#ifndef _BASEVECTORS_H_
29#define _BASEVECTORS_H_
33#define SOPLEX_DEBUG_BASEVECTORS
47#define SOPLEX_VECTOR_MARKER 1e-100
70 for(
int i = 0; i <
vec.size(); ++i)
72 assert(
vec.index(i) <
dim());
88 for(
int i =
vec.size() - 1; i >= 0; --i)
90 assert(
vec.index(i) <
dim());
128 assert(
vec.dim() <=
dim());
132 const int* idx =
vec.indexMem();
134 for(
int i =
vec.size() - 1; i >= 0; --i)
136 val[*idx] =
vec.val[*idx];
154 for(
int i =
vec.size() - 1; i >= 0; --i)
156 assert(
vec.index(i) >= 0);
157 assert(
vec.index(i) <
dim());
172 assert(
dim() ==
vec.dim());
176 for(
int i =
vec.size() - 1; i >= 0 ; --i)
181 for(
int i =
dim() - 1; i >= 0; --i)
196 for(
int i =
vec.size() - 1; i >= 0; --i)
198 assert(
vec.index(i) >= 0);
199 assert(
vec.index(i) <
dim());
214 assert(
dim() ==
vec.dim());
218 for(
int i =
vec.size() - 1; i >= 0; --i)
223 for(
int i =
dim() - 1; i >= 0; --i)
237 assert(
dim() >=
vec.dim());
241 for(
int i =
vec.size() - 1; i >= 0; --i)
254 assert(
dim() ==
vec.dim());
258 const int* idx =
vec.indexMem();
262 for(
int i =
vec.size() - 1; i >= 0; --i)
264 x +=
val[*idx] *
vec.val[*idx];
278template <
class S,
class T >
282 for(
int i =
vec.size() - 1; i >= 0; --i)
284 assert(
vec.index(i) <
dim());
295template <
class S,
class T >
299 for(
int i =
vec.size() - 1; i >= 0; --i)
301 assert(
vec.index(i) <
dim());
312template <
class S,
class T >
316 assert(
vec.dim() <=
dim());
320 const int* idx =
vec.indexMem();
322 for(
int i =
vec.size() - 1; i >= 0; --i)
323 val[idx[i]] += x *
vec[idx[i]];
327 assert(
vec.dim() ==
dim());
329 for(
int i =
dim() - 1; i >= 0; --i)
387template <
class S,
class T >
398 for(
int i =
vec.size() - 1; i >= 0; --i)
404 x = v[j] + xx *
vec.value(i);
406 if(isNotZero(x, this->tolerances()->epsilon()))
416 x = xx *
vec.value(i);
418 if(isNotZero(x, this->tolerances()->epsilon()))
432 for(; iptr < endptr; ++iptr)
436 if(isNotZero(x, this->tolerances()->epsilon()))
456template <
class S,
class T >
462 assert(x.
dim() == y.
dim());
471 int n = x.
size() - 1;
472 int m = y.
size() - 1;
480 while(i < n && j < m)
496 while(i < n && xi != yj)
499 while(j < m && xi != yj)
508 assert(isConsistent());
517template <
class S,
class T >
527 for(
int i =
dim() - 1; i >= 0; --i)
531 if(isNotZero(y, this->tolerances()->epsilon()))
538 assert(isConsistent());
546#define SOPLEX_SHORTPRODUCT_FACTOR 0.5
548template <
class S,
class T >
553 int& nCallsSparse,
int& nCallsFull
556 assert(A.
num() == x.
dim());
562 if(timeSparse !=
nullptr)
568 if(timeSparse !=
nullptr)
576 if(timeSparse !=
nullptr)
582 if(timeSparse !=
nullptr)
589 if(timeFull !=
nullptr)
595 if(timeFull !=
nullptr)
610template <
class S,
class T >
615 assert(x.
size() == 1);
618 const int nzidx = x.
idx[0];
619 const T nzval = x.
val[nzidx];
623 if(isZero(nzval, this->tolerances()->epsilon()) || Ai.
size() == 0)
629 for(
int j =
num - 1; j >= 0; --j)
646template <
class S,
class T >
659 int curidx = x.
idx[0];
660 const T x0 = x.
val[curidx];
662 int xsize = x.
size();
666 if(isNotZero(x0, this->tolerances()->epsilon()))
670 for(
int j = 0; j < Aisize; ++j)
673 const R product = x0 * elt.
val;
686 for(
int i = 1; i < xsize; ++i)
689 const T xi = x.
val[curidx];
693 if(isNotZero(xi, this->tolerances()->epsilon()))
698 for(
int j = 0; j < Aisize; ++j)
702 const R newval = oldval + xi * elt.
val;
706 if(oldval != 0 && newval == 0)
716 if(oldval == 0 && newval != 0)
730 for(
int i = 0; i <
num; ++i)
737 idx[nz_counter++] = curidx;
751template <
class S,
class T >
764 bool A_is_zero =
true;
765 int xsize = x.
size();
768 for(
int i = 0; i < xsize; ++i)
770 const int curidx = x.
idx[i];
771 const T xi = x.
val[curidx];
775 if(A_is_zero && Aisize > 0)
778 for(
int j = 0; j < Aisize; ++j)
795template <
class S,
class T >
799 assert(!x.isSetup());
813 for(
int i = 0; i <
end; ++i)
822 if(isNotZero(xval, this->tolerances()->epsilon()))
825 x.
idx[ nzcount++ ] = i;
827 for(
int j = Ai.
size() - 1; j >= 0; --j)
862 for(
int i = 0; i < s; ++i)
864 int k = rhs.
index(i);
867 if(isZero(v, this->tolerances()->epsilon()))
896 for(
int i = 0; i < s; ++i)
898 int k = rhs.
index(i);
949 for(
int i = vec.
dim() - 1; i >= 0; --i)
980 for(
int i = vec.
dim() - 1; i >= 0; --i)
1006 assert(sv.isSetup());
1014 for(
int i = 0; i < nnz; ++i)
1018 if(sv.
value(idx) != 0.0)
1042 for(
int i =
size() - 1; i >= 0; --i)
1114 assert(
this != &vec);
1140 for(i = 0; i < vec.
dim() - 1; ++i)
1141 s << vec[i] <<
", ";
1157 for(
int i = 0; i < res.
dim(); ++i)
1175 for(
int i = 0; i < v.
size(); ++i)
1201 while(s.get(c).good())
1203 if(c !=
' ' && c !=
'\t' && c !=
'\n')
1215 if(i >= vec.
dim() - 1)
1220 while(s.get(c).good())
1222 if(c !=
' ' && c !=
'\t' && c !=
'\n')
1249 for(
int i = 0, j = 0; i < v.
size(); ++i)
1254 os <<
" - " << -v.
value(i);
1256 os <<
" + " << v.
value(i);
1261 os <<
" x" << v.
index(i);
1264 if((i + 1) % 4 == 0)
1278 for(
int i = 0; i < s.
num(); ++i)
1287#ifdef SOPLEX_DEBUG_BASEVECTORS
1289#undef SOPLEX_DEBUG_BASEVECTORS
#define SOPLEX_SHORTPRODUCT_FACTOR
Assigns SSVectorBase to for a setup x.
#define SOPLEX_VECTOR_MARKER
void makeMem(int n)
Ensure there is room for n new nonzeros.
bool isConsistent() const
Consistency check.
void allocMem(int n)
Allocate memory for n nonzeros.
void add(const SVectorBase< S > &vec)
Append nonzeros of sv.
DSVectorBase(int n=8)
Default constructor.
void setMax(int newmax=1)
Reset nonzero memory to >= newmax.
DSVectorBase< R > & operator=(const SVectorBase< S > &vec)
Assignment operator.
Nonzero< R > * theelem
Memory.
void addIdx(int i)
appends index i.
int num
number of used indices
int * idx
array of indices
int len
length of array idx
Sparse vector nonzero element.
int idx
Index of nonzero element.
R val
Value of nonzero element.
SSVectorBase< R > & assign2productShort(const SVSetBase< S > &A, const SSVectorBase< T > &x)
Assignment helper.
SSVectorBase< R > & assign2product1(const SVSetBase< S > &A, const SSVectorBase< T > &x)
Assignment helper.
bool setupStatus
Is the SSVectorBase set up?
SSVectorBase< R > & multAdd(S xx, const SVectorBase< T > &vec)
Addition of a scaled vector.
SSVectorBase< R > & assign(const SVectorBase< S > &rhs)
Assigns only the elements of rhs.
SSVectorBase< R > & assign2product4setup(const SVSetBase< S > &A, const SSVectorBase< T > &x, Timer *timeSparse, Timer *timeFull, int &nCallsSparse, int &nCallsFull)
Assigns SSVectorBase to for a setup x.
SSVectorBase< R > & operator-=(const VectorBase< S > &vec)
Subtraction.
bool isConsistent() const
consistency check.
SSVectorBase(int p_dim, std::shared_ptr< Tolerances > tol=nullptr)
Default constructor.
SSVectorBase< R > & assign2product(const SSVectorBase< S > &x, const SVSetBase< T > &A)
Assigns to SSVectorBase.
R value(int n) const
Returns value of the n 'th nonzero element.
SSVectorBase< R > & assignPWproduct4setup(const SSVectorBase< S > &x, const SSVectorBase< T > &y)
Assigns pair wise vector product to SSVectorBase.
SSVectorBase< R > & operator=(const SSVectorBase< S > &rhs)
Assignment operator.
int index(int n) const
Returns index of the n 'th nonzero element.
int dim() const
Dimension of VectorBase.
SSVectorBase< R > & operator+=(const VectorBase< S > &vec)
Addition.
void clear()
Clears vector.
SSVectorBase< R > & assign2productFull(const SVSetBase< S > &A, const SSVectorBase< T > &x)
Assignment helper.
SSVectorBase< R > & assign2productAndSetup(const SVSetBase< S > &A, SSVectorBase< T > &x)
Assigns SSVectorBase to thereby setting up x.
int size() const
Returns the number of nonzeros.
int memSize() const
Used nonzero memory.
int num() const
Current number of SVectorBases.
Nonzero< R > & element(int n)
Reference to the n 'th nonzero element.
R operator*(const VectorBase< R > &w) const
Inner product.
int & index(int n)
Reference to index of n 'th nonzero.
int max() const
Maximal number of indices.
R & value(int n)
Reference to value of n 'th nonzero.
void set_size(int s)
Set size of the vector.
int dim() const
Dimension of the vector defined as maximal index + 1.
SVectorBase< R > & operator=(const VectorBase< S > &vec)
Assignment operator.
void clear()
Remove all indices.
int size() const
Number of used indices.
Wrapper for the system time query methods.
virtual void start()=0
start timer, resume accounting user, system and real time.
virtual Real stop()=0
stop timer, return accounted user time.
VectorBase< R > & operator+=(const VectorBase< S > &vec)
Addition.
VectorBase< R > & assign(const SVectorBase< S > &vec)
Assign values of vec.
VectorBase< R > & operator=(const VectorBase< S > &vec)
Assignment operator.
std::vector< R >::const_iterator end() const
VectorBase< R > & operator-=(const VectorBase< S > &vec)
Subtraction.
void reDim(int newdim, const bool setZero=true)
Resets VectorBase's dimension to newdim.
int dim() const
Dimension of vector.
std::vector< R > val
Values of vector.
const std::vector< R > & vec()
Return underlying std::vector.
void clear()
Set vector to contain all-zeros (keeping the same length).
VectorBase< R > & multSub(const S &x, const SVectorBase< T > &vec)
Subtraction of scaled vector.
R operator*(const VectorBase< R > &vec) const
Inner product.
VectorBase< R > & multAdd(const S &x, const VectorBase< T > &vec)
Addition of scaled vector.
Everything should be within this namespace.
std::istream & operator>>(std::istream &s, VectorBase< R > &vec)
std::ostream & operator<<(std::ostream &s, const VectorBase< R > &vec)
Output operator.
VectorBase< R > operator-(const SVectorBase< R > &v, const VectorBase< R > &w)
Subtraction.
DSVectorBase< R > operator*(const SVectorBase< R > &v, R x)
Scaling.
SPxDefaultRT & operator=(const SPxDefaultRT &rhs)
assignment operator
Debugging, floating point type and parameter definitions.