Scippy

SoPlex

Sequential object-oriented simPlex

CLUFactor< R >::L Struct Reference

Data structures for saving the working matrix and L factor. More...

#include <clufactor.h>

Public Attributes

int size
 size of arrays val and idx More...
 
std::vector< R > val
 values of L vectors More...
 
int * idx
 indices of L vectors More...
 
int startSize
 size of array start More...
 
int firstUpdate
 number of first update L vector More...
 
int firstUnused
 number of first unused L vector More...
 
int * start
 starting positions in val and idx More...
 
int * row
 column indices of L vectors More...
 
int updateType
 type of updates to be used. More...
 
std::vector< R > rval
 values of rows of L More...
 
int * ridx
 indices of rows of L More...
 
int * rbeg
 start of rows in rval and ridx More...
 
int * rorig
 original row permutation More...
 
int * rperm
 original row permutation More...
 

Detailed Description

template<class R>
struct soplex::CLUFactor< R >::L

Data structures for saving the working matrix and L factor.

Definition at line 180 of file clufactor.h.

Member Data Documentation

◆ firstUnused

int firstUnused

number of first unused L vector

Definition at line 187 of file clufactor.h.

Referenced by SLUFactor< BP >::memory().

◆ firstUpdate

int firstUpdate

number of first update L vector

Definition at line 186 of file clufactor.h.

◆ idx

int* idx

indices of L vectors

Definition at line 184 of file clufactor.h.

◆ rbeg

int* rbeg

start of rows in rval and ridx

Definition at line 198 of file clufactor.h.

◆ ridx

int* ridx

indices of rows of L

Definition at line 197 of file clufactor.h.

◆ rorig

int* rorig

original row permutation

Definition at line 199 of file clufactor.h.

◆ row

int* row

column indices of L vectors

Definition at line 189 of file clufactor.h.

◆ rperm

int* rperm

original row permutation

Definition at line 200 of file clufactor.h.

◆ rval

std::vector<R> rval

values of rows of L

Definition at line 196 of file clufactor.h.

◆ size

int size

size of arrays val and idx

Definition at line 182 of file clufactor.h.

◆ start

int* start

starting positions in val and idx

Definition at line 188 of file clufactor.h.

Referenced by SLUFactor< BP >::memory().

◆ startSize

int startSize

size of array start

Definition at line 185 of file clufactor.h.

◆ updateType

int updateType

type of updates to be used.

Definition at line 190 of file clufactor.h.

◆ val

std::vector<R> val

values of L vectors

Definition at line 183 of file clufactor.h.